1 31 package org.objectweb.proactive.core.mop; 32 33 public class ConstructionOfStubObjectFailedException extends MOPRuntimeException { 34 35 public ConstructionOfStubObjectFailedException() {} 36 37 public ConstructionOfStubObjectFailedException(String s) { 38 super(s); 39 } 40 41 public ConstructionOfStubObjectFailedException(String s, Throwable ex) { 42 super(s, ex); 43 } 44 45 public ConstructionOfStubObjectFailedException(Throwable ex) { 46 super(ex.getMessage(), ex); 47 } 48 49 } 50 51 | Popular Tags |