- 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 aKeySelector.A KeySelectorExceptioncan contain a cause: another throwable that caused thisKeySelectorExceptionto get thrown.- Since:
- 1.6
- See Also:
- Serialized Form
 
- 
- 
Constructor SummaryConstructors Constructor Description KeySelectorException()Constructs a newKeySelectorExceptionwithnullas its detail message.KeySelectorException(String message)Constructs a newKeySelectorExceptionwith the specified detail message.KeySelectorException(String message, Throwable cause)Constructs a newKeySelectorExceptionwith the specified detail message and cause.KeySelectorException(Throwable cause)Constructs a newKeySelectorExceptionwith the specified cause and a detail message of(cause==null ? null : cause.toString())(which typically contains the class and detail message ofcause).
 - 
Method SummaryAll Methods Instance Methods Concrete Methods Modifier and Type Method Description ThrowablegetCause()Returns the cause of thisKeySelectorExceptionornullif the cause is nonexistent or unknown.voidprintStackTrace()Prints thisKeySelectorException, its backtrace and the cause's backtrace to the standard error stream.voidprintStackTrace(PrintStream s)Prints thisKeySelectorException, its backtrace and the cause's backtrace to the specified print stream.voidprintStackTrace(PrintWriter s)Prints thisKeySelectorException, its backtrace and the cause's backtrace to the specified print writer.- 
Methods declared in class java.lang.ThrowableaddSuppressed, fillInStackTrace, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, setStackTrace, toString
 
- 
 
- 
- 
- 
Constructor Detail- 
KeySelectorExceptionpublic KeySelectorException() Constructs a newKeySelectorExceptionwithnullas its detail message.
 - 
KeySelectorExceptionpublic KeySelectorException(String message) Constructs a newKeySelectorExceptionwith the specified detail message.- Parameters:
- message- the detail message
 
 - 
KeySelectorExceptionpublic KeySelectorException(String message, Throwable cause) Constructs a newKeySelectorExceptionwith 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 message
- cause- the cause (A- nullvalue is permitted, and indicates that the cause is nonexistent or unknown.)
 
 - 
KeySelectorExceptionpublic KeySelectorException(Throwable cause) Constructs a newKeySelectorExceptionwith 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 (A- nullvalue is permitted, and indicates that the cause is nonexistent or unknown.)
 
 
- 
 - 
Method Detail- 
getCausepublic Throwable getCause() Returns the cause of thisKeySelectorExceptionornullif the cause is nonexistent or unknown. (The cause is the throwable that caused thisKeySelectorExceptionto get thrown.)
 - 
printStackTracepublic void printStackTrace() Prints thisKeySelectorException, its backtrace and the cause's backtrace to the standard error stream.- Overrides:
- printStackTracein class- Throwable
 
 - 
printStackTracepublic void printStackTrace(PrintStream s) Prints thisKeySelectorException, its backtrace and the cause's backtrace to the specified print stream.- Overrides:
- printStackTracein class- Throwable
- Parameters:
- s-- PrintStreamto use for output
 
 - 
printStackTracepublic void printStackTrace(PrintWriter s) Prints thisKeySelectorException, its backtrace and the cause's backtrace to the specified print writer.- Overrides:
- printStackTracein class- Throwable
- Parameters:
- s-- PrintWriterto use for output
 
 
- 
 
-