1 31 package org.objectweb.proactive; 32 33 import org.objectweb.proactive.core.ProActiveException; 34 35 46 public class ActiveObjectCreationException extends ProActiveException { 47 48 52 public ActiveObjectCreationException() {} 53 54 55 59 public ActiveObjectCreationException(String s) { 60 super(s); 61 } 62 63 64 71 public ActiveObjectCreationException(String s, Throwable detail) { 72 super(s, detail); 73 } 74 75 76 81 public ActiveObjectCreationException(Throwable detail) { 82 super(detail); 83 } 84 85 } 86 87 | Popular Tags |