1 23 24 package org.enhydra.xml.driver; 25 26 import org.enhydra.error.ChainedException; 27 import org.enhydra.error.ChainedRuntimeException; 28 29 32 public class TestException extends ChainedRuntimeException { 33 36 public TestException(String msg) { 37 super(msg); 38 } 39 40 43 public TestException(String msg, 44 Throwable cause) { 45 super(msg, cause); 46 } 47 48 51 public TestException(Throwable cause) { 52 super(cause); 53 } 54 } 55 | Popular Tags |