java.security.cert
public class CertPathBuilderException extends GeneralSecurityException
CertPathBuilder
, wrapping
the lower exception. This class is not thread-safe.
Since: 1.4
See Also: CertPathBuilder
UNKNOWN: updated to 1.4
Constructor Summary | |
---|---|
CertPathBuilderException()
Create an exception without a message. | |
CertPathBuilderException(String msg)
Create an exception with a message. | |
CertPathBuilderException(Throwable cause)
Create an exception with a cause. | |
CertPathBuilderException(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