1 package com.icl.saxon.expr; 2 import javax.xml.transform.TransformerException ; 3 4 10 11 public class XPathException extends TransformerException { 12 13 public XPathException(String message) { 14 super(message); 15 } 16 17 public XPathException(Exception err) { 18 super(err); 19 } 20 21 public XPathException(String message, Exception err) { 22 super(message, err); 23 } 24 25 } 26 27 | Popular Tags |