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