javax.xml.crypto.dsig.XMLSignatureException Maven / Gradle / Ivy
The newest version!
/* */ package javax.xml.crypto.dsig;
/* */
/* */ import java.io.PrintStream;
/* */ import java.io.PrintWriter;
/* */
/* */ public class XMLSignatureException extends Exception
/* */ {
/* */ private static final long serialVersionUID = -3438102491013869995L;
/* */ private Throwable cause;
/* */
/* */ public XMLSignatureException()
/* */ {
/* */ }
/* */
/* */ public XMLSignatureException(String message)
/* */ {
/* 47 */ super(message);
/* */ }
/* */
/* */ public XMLSignatureException(String message, Throwable cause)
/* */ {
/* 62 */ super(message);
/* 63 */ this.cause = cause;
/* */ }
/* */
/* */ public XMLSignatureException(Throwable cause)
/* */ {
/* 77 */ super(cause == null ? null : cause.toString());
/* 78 */ this.cause = cause;
/* */ }
/* */
/* */ public Throwable getCause()
/* */ {
/* 91 */ return this.cause;
/* */ }
/* */
/* */ public void printStackTrace()
/* */ {
/* 99 */ super.printStackTrace();
/* 100 */ if (this.cause != null)
/* 101 */ this.cause.printStackTrace();
/* */ }
/* */
/* */ public void printStackTrace(PrintStream s)
/* */ {
/* 112 */ super.printStackTrace(s);
/* 113 */ if (this.cause != null)
/* 114 */ this.cause.printStackTrace(s);
/* */ }
/* */
/* */ public void printStackTrace(PrintWriter s)
/* */ {
/* 125 */ super.printStackTrace(s);
/* 126 */ if (this.cause != null)
/* 127 */ this.cause.printStackTrace(s);
/* */ }
/* */ }
/* Location: E:\HYN\Java\trunk\ref\lib-dep\xmldsig\xmldsig.jar
* Qualified Name: javax.xml.crypto.dsig.XMLSignatureException
* JD-Core Version: 0.6.2
*/