javax.xml.crypto.NoSuchMechanismException Maven / Gradle / Ivy
The newest version!
/* */ package javax.xml.crypto;
/* */
/* */ import java.io.PrintStream;
/* */ import java.io.PrintWriter;
/* */
/* */ public class NoSuchMechanismException extends RuntimeException
/* */ {
/* */ private static final long serialVersionUID = 4189669069570660166L;
/* */ private Throwable cause;
/* */
/* */ public NoSuchMechanismException()
/* */ {
/* */ }
/* */
/* */ public NoSuchMechanismException(String message)
/* */ {
/* 58 */ super(message);
/* */ }
/* */
/* */ public NoSuchMechanismException(String message, Throwable cause)
/* */ {
/* 73 */ super(message);
/* 74 */ this.cause = cause;
/* */ }
/* */
/* */ public NoSuchMechanismException(Throwable cause)
/* */ {
/* 87 */ super(cause == null ? null : cause.toString());
/* 88 */ this.cause = cause;
/* */ }
/* */
/* */ public Throwable getCause()
/* */ {
/* 101 */ return this.cause;
/* */ }
/* */
/* */ public void printStackTrace()
/* */ {
/* 109 */ super.printStackTrace();
/* */ }
/* */
/* */ public void printStackTrace(PrintStream s)
/* */ {
/* 120 */ super.printStackTrace(s);
/* */ }
/* */
/* */ public void printStackTrace(PrintWriter s)
/* */ {
/* 131 */ super.printStackTrace(s);
/* */ }
/* */ }
/* Location: E:\HYN\Java\trunk\ref\lib-dep\xmldsig\xmldsig.jar
* Qualified Name: javax.xml.crypto.NoSuchMechanismException
* JD-Core Version: 0.6.2
*/