java.security.cert
Class CertPathValidatorException
- java.lang.Object
java.lang.Throwable
java.lang.Exception
java.security.GeneralSecurityException
java.security.cert.CertPathValidatorException
- public class CertPathValidatorException
- extends GeneralSecurityException
A CertPathValidatorException
provides support for wrapping
exceptions. The getCause
method returns the throwable,
if any, that caused this exception to be thrown.
A CertPathValidatorException
may also include the
certification path that was being validated when the exception was thrown
and the index of the certificate in the certification path that caused the
exception to be thrown. Use the getCertPath
and
getIndex
methods to retrieve this information.
Concurrent Access
Unless otherwise specified, the methods defined in this class are not thread-safe. Multiple threads that need to access a single object concurrently should synchronize amongst themselves and provide the necessary locking. Multiple threads each manipulating separate objects need not synchronize.
Constructor Summary
Constructor and Description |
---|
CertPathValidatorException()
|
CertPathValidatorException(String msg)
Creates a
CertPathValidatorException with the given
detail message.
|
CertPathValidatorException(String msg,Throwable cause)
Creates a
CertPathValidatorException with the specified
detail message and cause.
|
CertPathValidatorException(String msg,Throwable cause,CertPath certPath,int index)
Creates a
CertPathValidatorException with the specified
detail message, cause, certification path, and index.
|
CertPathValidatorException(Throwable cause)
Creates a
CertPathValidatorException that wraps the
specified throwable.
|
Method Summary
Modifier and Type | Method and Description |
---|---|
getCause()
Returns the cause of this
CertPathValidatorException or
null if the cause is nonexistent or unknown.
|
|
getCertPath()
Returns the certification path that was being validated when
the exception was thrown.
|
|
|
getIndex()
Returns the index of the certificate in the certification path
that caused the exception to be thrown.
|
getMessage()
Returns the detail message for this
CertPathValidatorException .
|
|
|
printStackTrace()
Prints a stack trace to
System.err , including the backtrace
of the cause, if any.
|
|
printStackTrace(PrintStream ps)
Prints a stack trace to a
PrintStream , including the
backtrace of the cause, if any.
|
|
printStackTrace(PrintWriter pw)
Prints a stack trace to a
PrintWriter , including the
backtrace of the cause, if any.
|
toString()
Returns a string describing this exception, including a description
of the internal (wrapped) cause if there is one.
|
Methods inherited from class java.lang.Throwable |
---|
fillInStackTrace, getLocalizedMessage, getStackTrace, initCause, setStackTrace |
Methods inherited from class java.lang.Object |
---|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait |
Constructor Detail
CertPathValidatorException
- public CertPathValidatorException( )
CertPathValidatorException
- public CertPathValidatorException( String msg)
msg
- the detail message CertPathValidatorException
- public CertPathValidatorException( Throwable cause)
CertPathValidatorException
that wraps the
specified throwable. This allows any exception to be converted into a
CertPathValidatorException
, while retaining information
about the wrapped exception, 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.) CertPathValidatorException
CertPathValidatorException
with the specified
detail message and cause.
msg
- the detail message 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.) CertPathValidatorException
CertPathValidatorException
with the specified
detail message, cause, certification path, and index.
msg
- the detail message (or null
if none) cause
- the cause (or null
if none) certPath
- the certification path that was in the process of
being validated when the error was encountered index
- the index of the certificate in the certification path
that caused the error (or -1 if not applicable). Note that
the list of certificates in a CertPath
is zero based. IndexOutofBoundsException
- if the index is out of range
(index <-1 ||(certpath!="null&&index">=
certPath.getCertificates().size())
Method Detail
getMessage
- public String getMessage()
CertPathValidatorException
.
getMessage
in class Throwable
null
if neither the message
nor cause were specified getCertPath
- public CertPath getCertPath()
CertPath
that was being validated when
the exception was thrown (or null
if not specified) getIndex
- public int getIndex()
CertPath
is zero based. If no
index has been set, -1 is returned.
getCause
- public Throwable getCause()
CertPathValidatorException
or
null
if the cause is nonexistent or unknown.
null
if the cause
is nonexistent or unknown. toString
- public String toString()
CertPathValidatorException
printStackTrace
- public void printStackTrace()
System.err
, including the backtrace
of the cause, if any.
printStackTrace
in class Throwable
printStackTrace
- public void printStackTrace(PrintStream ps)
PrintStream
, including the
backtrace of the cause, if any.
printStackTrace
in class Throwable
ps
- the PrintStream
to use for output printStackTrace
- public void printStackTrace(PrintWriter pw)
PrintWriter
, including the
backtrace of the cause, if any.
printStackTrace
in class Throwable
pw
- the PrintWriter
to use for output
CertPathValidatorException
with the given detail message. A detail message is aString
that describes this particular exception.