1 31 package org.objectweb.proactive.core.exceptions.security; 32 33 41 public class ActiveObjectCreationSecurityException extends ProActiveSecurityException { 42 43 49 public ActiveObjectCreationSecurityException(String s, Throwable ex) { 50 super(s, ex); 51 description = description + "Active Object Creation -> "; 52 } 53 54 59 public ActiveObjectCreationSecurityException(Throwable ex) { 60 super(ex); 61 description = description + "Active Object Creation -> "; 62 } 63 } 64 | Popular Tags |