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