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