1 23 24 package org.enhydra.xml.xmlc; 25 26 29 public class XMLCRuntimeException extends org.enhydra.error.ChainedRuntimeException { 30 35 public XMLCRuntimeException(String msg) { 36 super(msg); 37 } 38 39 46 public XMLCRuntimeException(String msg, 47 Throwable cause) { 48 super(msg, cause); 49 } 50 51 58 public XMLCRuntimeException(Throwable cause) { 59 super(cause); 60 } 61 } 62 | Popular Tags |