Constructors Summary |
---|
public GeneralSecurityException(String msg)Constructs a new instance of {@code GeneralSecurityException} with the
given message.
super(msg);
|
public GeneralSecurityException()Constructs a new instance of {@code GeneralSecurityException}.
|
public GeneralSecurityException(String message, Throwable cause)Constructs a new instance of {@code GeneralSecurityException} with the
given message and the cause.
super(message, cause);
|
public GeneralSecurityException(Throwable cause)Constructs a new instance of {@code GeneralSecurityException} with the
cause.
super(cause);
|