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