|
Préférences
Moteurs de recherche
|
||||||||||||
JavaTM 2 Platform Std. Ed. v1.6.0
java.security.cert
|
Constructor Summary | |
---|---|
CertPathBuilderException()
Creates a CertPathBuilderException with null
as its detail message. |
|
CertPathBuilderException(String msg)
Creates a CertPathBuilderException with the given
detail message. |
|
CertPathBuilderException(String msg,
Throwable cause)
Creates a CertPathBuilderException with the specified
detail message and cause. |
|
CertPathBuilderException(Throwable cause)
Creates a CertPathBuilderException that wraps the specified
throwable. |
Method Summary |
---|
Methods inherited from class java.lang.Throwable |
---|
fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString |
Methods inherited from class java.lang.Object |
---|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait |
Constructor Detail |
---|
public CertPathBuilderException()
CertPathBuilderException
with null
as its detail message.
public CertPathBuilderException(String msg)
CertPathBuilderException
with the given
detail message. The detail message is a String
that
describes this particular exception in more detail.
msg
- the detail messagepublic CertPathBuilderException(Throwable cause)
CertPathBuilderException
that wraps the specified
throwable. This allows any exception to be converted into a
CertPathBuilderException
, 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.)public CertPathBuilderException(String msg, Throwable cause)
CertPathBuilderException
with the specified
detail message and cause.
msg
- the detail messagecause
- 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.)