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