Constructors Summary |
---|
public CRLException(String msg)Creates a new {@code CRLException} with the specified message.
super(msg);
|
public CRLException()Creates a new {@code CRLException}.
|
public CRLException(String message, Throwable cause)Creates a new {@code CRLException} with the specified message and cause.
super(message, cause);
|
public CRLException(Throwable cause)Creates a new {@code CRLException} with the specified cause.
super(cause);
|