javax.xml.crypto.KeySelectorException Maven / Gradle / Ivy
The newest version!
/* */ package javax.xml.crypto;
/* */
/* */ import java.io.PrintStream;
/* */ import java.io.PrintWriter;
/* */
/* */ public class KeySelectorException extends Exception
/* */ {
/* */ private static final long serialVersionUID = -7480033639322531109L;
/* */ private Throwable cause;
/* */
/* */ public KeySelectorException()
/* */ {
/* */ }
/* */
/* */ public KeySelectorException(String message)
/* */ {
/* 49 */ super(message);
/* */ }
/* */
/* */ public KeySelectorException(String message, Throwable cause)
/* */ {
/* 64 */ super(message);
/* 65 */ this.cause = cause;
/* */ }
/* */
/* */ public KeySelectorException(Throwable cause)
/* */ {
/* 79 */ super(cause == null ? null : cause.toString());
/* 80 */ this.cause = cause;
/* */ }
/* */
/* */ public Throwable getCause()
/* */ {
/* 93 */ return this.cause;
/* */ }
/* */
/* */ public void printStackTrace()
/* */ {
/* 101 */ super.printStackTrace();
/* */ }
/* */
/* */ public void printStackTrace(PrintStream s)
/* */ {
/* 112 */ super.printStackTrace(s);
/* */ }
/* */
/* */ public void printStackTrace(PrintWriter s)
/* */ {
/* 123 */ super.printStackTrace(s);
/* */ }
/* */ }
/* Location: E:\HYN\Java\trunk\ref\lib-dep\xmldsig\xmldsig.jar
* Qualified Name: javax.xml.crypto.KeySelectorException
* JD-Core Version: 0.6.2
*/