Package java.security.cert
Class CertPathBuilderException
java.lang.Object
java.lang.Throwable
java.lang.Exception
java.security.GeneralSecurityException
java.security.cert.CertPathBuilderException
- All Implemented Interfaces:
Serializable
- Direct Known Subclasses:
ExtCertPathBuilderException
public class CertPathBuilderException extends GeneralSecurityException
The exception that is thrown when a
CertPathBuilder method fails.- See Also:
- Serialized Form
-
Constructor Summary
Constructors Constructor Description CertPathBuilderException()Creates a newCertPathBuilderException.CertPathBuilderException(String msg)Creates a newCertPathBuilderExceptionwith the specified message.CertPathBuilderException(String msg, Throwable cause)Creates a newCertPathBuilderExceptionwith the specified message and cause.CertPathBuilderException(Throwable cause)Creates a newCertPathBuilderExceptionwith the specified cause. -
Method Summary
Methods inherited from class java.lang.Throwable
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
-
Constructor Details
-
CertPathBuilderException
Creates a newCertPathBuilderExceptionwith the specified message and cause.- Parameters:
msg- the detail message for the exceptioncause- why the building of the certification path failed.
-
CertPathBuilderException
Creates a newCertPathBuilderExceptionwith the specified cause.- Parameters:
cause- why the building of the certification path failed.
-
CertPathBuilderException
Creates a newCertPathBuilderExceptionwith the specified message.- Parameters:
msg- the detail message for the exception.
-
CertPathBuilderException
public CertPathBuilderException()Creates a newCertPathBuilderException.
-