1 56 57 package org.jdom.transform; 58 59 import org.jdom.JDOMException; 60 61 67 public class XSLTransformException extends JDOMException { 68 69 private static final String CVS_ID = 70 "@(#) $RCSfile: XSLTransformException.java,v $ $Revision: 1.3 $ $Date: 2004/02/06 09:28:32 $ $Name: $"; 71 72 public XSLTransformException() { 73 } 74 75 public XSLTransformException(String message) { 76 super(message); 77 } 78 79 public XSLTransformException(String message, Exception cause) { 80 super(message, cause); 81 } 82 } 83 | Popular Tags |