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