GeneralSecurityExceptionpublic class GeneralSecurityException extends Exception The GeneralSecurityException class is a generic
security exception class that provides type safety for all the
security-related exception classes that extend from it. |
Constructors Summary |
---|
public GeneralSecurityException()Constructs a GeneralSecurityException with no detail message.
super();
| public GeneralSecurityException(String msg)Constructs a GeneralSecurityException with the specified detail
message.
A detail message is a String that describes this particular
exception.
super(msg);
|
|