.
It contains an adjacency list with information regarding the unsuccessful
paths that the SunCertPathBuilder tried.
| Constructor: |
public SunCertPathBuilderException() {
super();
}
Constructs a SunCertPathBuilderException with
null as its detail message. |
public SunCertPathBuilderException(String msg) {
super(msg);
}
Constructs a SunCertPathBuilderException with the specified
detail message. A detail message is a String that
describes this particular exception. Parameters:
msg - the detail message
|
public SunCertPathBuilderException(Throwable cause) {
super(cause);
}
Constructs a 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). Parameters:
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(String msg,
Throwable cause) {
super(msg, cause);
}
Creates a SunCertPathBuilderException with the specified
detail message and cause. Parameters:
msg - the detail message
cause - the cause
|
SunCertPathBuilderException(String msg,
AdjacencyList adjList) {
this(msg);
this.adjList = adjList;
}
Creates a SunCertPathBuilderException withe the specified
detail message and adjacency list. Parameters:
msg - the detail message
adjList - the adjacency list
|
SunCertPathBuilderException(String msg,
Throwable cause,
AdjacencyList adjList) {
this(msg, cause);
this.adjList = adjList;
}
Creates a SunCertPathBuilderException with the specified
detail message, cause, and adjacency list. Parameters:
msg - the detail message
cause - the throwable that occurred
adjList - Adjacency list
|