KeySelectorException (Java SE 10 & JDK 10 )
- java.lang.Object
-
- java.lang.Throwable
-
- java.lang.Exception
-
- javax.xml.crypto.KeySelectorException
-
- All Implemented Interfaces:
Serializable
public class KeySelectorException extends Exception
Indicates an exceptional condition thrown by a
KeySelector.A
KeySelectorExceptioncan contain a cause: another throwable that caused thisKeySelectorExceptionto get thrown.- Since:
- 1.6
- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description KeySelectorException()Constructs a new
KeySelectorExceptionwithnullas its detail message.KeySelectorException(String message)Constructs a new
KeySelectorExceptionwith the specified detail message.KeySelectorException(String message, Throwable cause)Constructs a new
KeySelectorExceptionwith the specified detail message and cause.KeySelectorException(Throwable cause)Constructs a new
KeySelectorExceptionwith the specified cause and a detail message of(cause==null ? null : cause.toString())(which typically contains the class and detail message ofcause).
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description ThrowablegetCause()Returns the cause of this
KeySelectorExceptionornullif the cause is nonexistent or unknown.voidprintStackTrace()Prints this
KeySelectorException, its backtrace and the cause's backtrace to the standard error stream.voidprintStackTrace(PrintStream s)Prints this
KeySelectorException, its backtrace and the cause's backtrace to the specified print stream.voidprintStackTrace(PrintWriter s)Prints this
KeySelectorException, its backtrace and the cause's backtrace to the specified print writer.-
Methods declared in class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
-
Methods declared in class java.lang.Throwable
addSuppressed, fillInStackTrace, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, setStackTrace, toString
-
-
-
-
Constructor Detail
-
KeySelectorException
public KeySelectorException()
Constructs a new
KeySelectorExceptionwithnullas its detail message.
-
KeySelectorException
public KeySelectorException(String message)
Constructs a new
KeySelectorExceptionwith the specified detail message.- Parameters:
message- the detail message
-
KeySelectorException
public KeySelectorException(String message, Throwable cause)
Constructs a new
KeySelectorExceptionwith the specified detail message and cause.Note that the detail message associated with
causeis not automatically incorporated in this exception's detail message.- Parameters:
message- the detail messagecause- the cause (Anullvalue is permitted, and indicates that the cause is nonexistent or unknown.)
-
KeySelectorException
public KeySelectorException(Throwable cause)
Constructs a new
KeySelectorExceptionwith the specified cause and a detail message of(cause==null ? null : cause.toString())(which typically contains the class and detail message ofcause).- Parameters:
cause- the cause (Anullvalue is permitted, and indicates that the cause is nonexistent or unknown.)
-
-
Method Detail
-
getCause
public Throwable getCause()
Returns the cause of this
KeySelectorExceptionornullif the cause is nonexistent or unknown. (The cause is the throwable that caused thisKeySelectorExceptionto get thrown.)
-
printStackTrace
public void printStackTrace()
Prints this
KeySelectorException, its backtrace and the cause's backtrace to the standard error stream.- Overrides:
printStackTracein classThrowable
-
printStackTrace
public void printStackTrace(PrintStream s)
Prints this
KeySelectorException, its backtrace and the cause's backtrace to the specified print stream.- Overrides:
printStackTracein classThrowable- Parameters:
s-PrintStreamto use for output
-
printStackTrace
public void printStackTrace(PrintWriter s)
Prints this
KeySelectorException, its backtrace and the cause's backtrace to the specified print writer.- Overrides:
printStackTracein classThrowable- Parameters:
s-PrintWriterto use for output
-
-
Report a bug or suggest an enhancement
For further API reference and developer documentation see the Java SE Documentation, which contains more detailed, developer-targeted descriptions with conceptual overviews, definitions of terms, workarounds, and working code examples.
Java is a trademark or registered trademark of Oracle and/or its affiliates in the US and other countries.
Copyright © 1993, 2018, Oracle and/or its affiliates, 500 Oracle Parkway, Redwood Shores, CA 94065 USA.
All rights reserved. Use is subject to license terms and the documentation redistribution policy.