| |
|
| java.lang.Object java.lang.Throwable java.lang.Exception java.security.GeneralSecurityException
All known Subclasses: javax.security.auth.login.LoginException, java.security.InvalidAlgorithmParameterException, java.security.KeyException, java.security.cert.CertStoreException, java.security.DigestException, java.security.UnrecoverableEntryException, java.security.spec.InvalidParameterSpecException, java.security.SignatureException, java.security.cert.CertPathValidatorException, java.security.KeyStoreException, java.security.spec.InvalidKeySpecException, java.security.NoSuchAlgorithmException, java.security.NoSuchProviderException, java.security.cert.CertPathBuilderException, java.security.cert.CertificateException, java.security.cert.CRLException,
GeneralSecurityException | public class GeneralSecurityException extends Exception (Code) | | The GeneralSecurityException class is a generic
security exception class that provides type safety for all the
security-related exception classes that extend from it.
version: 1.23, 07/05/05 author: Jan Luehe |
GeneralSecurityException | public GeneralSecurityException()(Code) | | Constructs a GeneralSecurityException with no detail message.
|
GeneralSecurityException | public GeneralSecurityException(String msg)(Code) | | Constructs a GeneralSecurityException with the specified detail
message.
A detail message is a String that describes this particular
exception.
Parameters: msg - the detail message. |
GeneralSecurityException | public GeneralSecurityException(String message, Throwable cause)(Code) | | Creates a GeneralSecurityException with the specified
detail message and cause.
Parameters: message - the detail message (which is saved for later retrievalby the GeneralSecurityException.getMessage() method). Parameters: cause - the cause (which is saved for later retrieval by theGeneralSecurityException.getCause() method). (A null value is permitted,and indicates that the cause is nonexistent or unknown.) since: 1.5 |
GeneralSecurityException | public GeneralSecurityException(Throwable cause)(Code) | | Creates a GeneralSecurityException with the specified cause
and a detail message of (cause==null ? null : cause.toString())
(which typically contains the class and detail message of
cause).
Parameters: cause - the cause (which is saved for later retrieval by theGeneralSecurityException.getCause() method). (A null value is permitted,and indicates that the cause is nonexistent or unknown.) since: 1.5 |
|
|
|