1 28 29 package com.caucho.xpath; 30 31 import com.caucho.util.ExceptionWrapper; 32 33 36 public class XPathException extends Exception  37 implements ExceptionWrapper, java.io.Serializable { 38 39 42 public XPathException() 43 { 44 } 45 46 49 public XPathException(String msg) 50 { 51 super(msg); 52 } 53 54 57 public XPathException(String msg, Throwable e) 58 { 59 super(msg, e); 60 } 61 62 65 public XPathException(Throwable e) 66 { 67 super(e); 68 } 69 70 73 public Throwable getRootCause() 74 { 75 return getCause(); 76 } 77 } 78 | Popular Tags |