java.security.cert
public class CertStoreException extends GeneralSecurityException
CertStore
, wrapping the lower exception. This class is not
thread-safe.
Since: 1.4
See Also: CertStore
UNKNOWN: updated to 1.4
Constructor Summary | |
---|---|
CertStoreException()
Create an exception without a message. | |
CertStoreException(String msg)
Create an exception with a message. | |
CertStoreException(Throwable cause)
Create an exception with a cause. | |
CertStoreException(String msg, Throwable cause)
Create an exception with a cause and a message.
|
Method Summary | |
---|---|
Throwable | getCause()
Get the cause, null if unknown.
|
String | getMessage()
Get the detail message.
|
void | printStackTrace()
Print the stack trace to System.err . |
void | printStackTrace(PrintStream stream)
Print the stack trace to a stream.
|
void | printStackTrace(PrintWriter stream)
Print the stack trace to a stream.
|
String | toString()
Convert this to a string, including its cause.
|
Parameters: msg a message to display with exception
cause == null ? null : cause.toString()
.
Parameters: cause the cause
Parameters: msg the message cause the cause
Returns: the cause
Returns: the detail message
System.err
.Parameters: stream the stream
Parameters: stream the stream
Returns: the string conversion