public class SunCertPathBuilderException
extends java.security.cert.CertPathBuilderException
CertPathBuilderException.
It contains an adjacency list with information regarding the unsuccessful
paths that the SunCertPathBuilder tried.CertPathBuilderException,
Serialized Form| Constructor and Description |
|---|
SunCertPathBuilderException()
Constructs a
SunCertPathBuilderException with
null as its detail message. |
SunCertPathBuilderException(java.lang.String msg)
Constructs a
SunCertPathBuilderException with the specified
detail message. |
SunCertPathBuilderException(java.lang.String msg,
java.lang.Throwable cause)
Creates a
SunCertPathBuilderException with the specified
detail message and cause. |
SunCertPathBuilderException(java.lang.Throwable cause)
Constructs a
SunCertPathBuilderException that wraps the
specified throwable. |
| Modifier and Type | Method and Description |
|---|---|
AdjacencyList |
getAdjacencyList()
Returns the adjacency list containing information about the build.
|
public SunCertPathBuilderException()
SunCertPathBuilderException with
null as its detail message.public SunCertPathBuilderException(java.lang.String msg)
SunCertPathBuilderException with the specified
detail message. A detail message is a String that
describes this particular exception.msg - the detail messagepublic SunCertPathBuilderException(java.lang.Throwable cause)
SunCertPathBuilderException that wraps the
specified throwable. This allows any exception to be converted into a
SunCertPathBuilderException, while retaining information
about the cause, which may be useful for debugging. The detail message is
set to (cause==null ? null : cause.toString()) (which
typically contains the class and detail message of cause).cause - the cause (which is saved for later retrieval by the
getCause() method). (A null value is
permitted, and indicates that the cause is nonexistent or unknown.)
root cause.public SunCertPathBuilderException(java.lang.String msg,
java.lang.Throwable cause)
SunCertPathBuilderException with the specified
detail message and cause.msg - the detail messagecause - the causepublic AdjacencyList getAdjacencyList()