FileDocCategorySizeDatePackage
GeneralSecurityException.javaAPI DocphoneME MR2 API (J2ME)1816Wed May 02 18:00:38 BST 2007java.security

GeneralSecurityException

public 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.
version
1.4.2

Fields Summary
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.

param
msg the detail message.

        super(msg);
    
Methods Summary