Package java.security.cert
Class CRLException
- java.lang.Object
-
- java.lang.Throwable
-
- java.lang.Exception
-
- java.security.GeneralSecurityException
-
- java.security.cert.CRLException
-
- All Implemented Interfaces:
Serializable
public class CRLException extends GeneralSecurityException
The exception that is thrown if errors occur during handling ofCRLs.- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description CRLException()Creates a newCRLException.CRLException(String msg)Creates a newCRLExceptionwith the specified message.CRLException(String message, Throwable cause)Creates a newCRLExceptionwith the specified message and cause.CRLException(Throwable cause)Creates a newCRLExceptionwith 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 Detail
-
CRLException
public CRLException(String msg)
Creates a newCRLExceptionwith the specified message.- Parameters:
msg- the detail message for this exception.
-
CRLException
public CRLException()
Creates a newCRLException.
-
CRLException
public CRLException(String message, Throwable cause)
Creates a newCRLExceptionwith the specified message and cause.- Parameters:
message- the detail message for this exception.cause- the cause for this exception.
-
CRLException
public CRLException(Throwable cause)
Creates a newCRLExceptionwith the specified cause.- Parameters:
cause- the cause for this exception.
-
-