1 9 package javolution.xml; 10 11 18 public class XmlException extends RuntimeException { 19 20 23 public XmlException() { 24 super(); 25 } 26 27 33 public XmlException(String message) { 34 super(message); 35 } 36 37 44 public XmlException(String message, Throwable cause) { 45 super(message + " caused by " + cause); 46 } 47 48 53 public XmlException(Throwable cause) { 54 super("Constructor exception caused by " + cause.toString()); 55 } 56 57 private static final long serialVersionUID = 3762814870390716212L; 58 } | Popular Tags |