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