FileDocCategorySizeDatePackage
GeneralSecurityException.javaAPI DocphoneME MR2 API (J2ME)1802Wed May 02 18:00:24 BST 2007com.sun.midp.crypto

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.

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