javax.xml.crypto.dsig.TransformException Maven / Gradle / Ivy
The newest version!
/* */ package javax.xml.crypto.dsig;
/* */
/* */ import java.io.PrintStream;
/* */ import java.io.PrintWriter;
/* */
/* */ public class TransformException extends Exception
/* */ {
/* */ private static final long serialVersionUID = 5082634801360427800L;
/* */ private Throwable cause;
/* */
/* */ public TransformException()
/* */ {
/* */ }
/* */
/* */ public TransformException(String message)
/* */ {
/* 51 */ super(message);
/* */ }
/* */
/* */ public TransformException(String message, Throwable cause)
/* */ {
/* 66 */ super(message);
/* 67 */ this.cause = cause;
/* */ }
/* */
/* */ public TransformException(Throwable cause)
/* */ {
/* 81 */ super(cause == null ? null : cause.toString());
/* 82 */ this.cause = cause;
/* */ }
/* */
/* */ public Throwable getCause()
/* */ {
/* 95 */ return this.cause;
/* */ }
/* */
/* */ public void printStackTrace()
/* */ {
/* 103 */ super.printStackTrace();
/* 104 */ if (this.cause != null)
/* 105 */ this.cause.printStackTrace();
/* */ }
/* */
/* */ public void printStackTrace(PrintStream s)
/* */ {
/* 116 */ super.printStackTrace(s);
/* 117 */ if (this.cause != null)
/* 118 */ this.cause.printStackTrace(s);
/* */ }
/* */
/* */ public void printStackTrace(PrintWriter s)
/* */ {
/* 129 */ super.printStackTrace(s);
/* 130 */ if (this.cause != null)
/* 131 */ this.cause.printStackTrace(s);
/* */ }
/* */ }
/* Location: E:\HYN\Java\trunk\ref\lib-dep\xmldsig\xmldsig.jar
* Qualified Name: javax.xml.crypto.dsig.TransformException
* JD-Core Version: 0.6.2
*/