Index (Frames) | Index (No Frames) | Package | Package Tree | Tree
java.security

Class GeneralSecurityException

java.lang.Object
|
+--java.lang.Throwable
   |
   +--java.lang.Exception
      |
      +--java.security.GeneralSecurityException


public class GeneralSecurityException

extends Exception

This class is the common superclass of all security exceptions. All exceptions in java.security extend this class with the exception (no pun intended) of AccessControlException and CertificateException (which extend SecurityException), ProviderException (RuntimeException), and InvalidParamterException (IllegalArgumentException).

Author:

Constructor Summary

GeneralSecurityException()

Create a new instance with no descriptive error message.
GeneralSecurityException(java.lang.String msg)

Create a new instance with a descriptive error message.

Constructor Details

GeneralSecurityException

public GeneralSecurityException()

Create a new instance with no descriptive error message.


GeneralSecurityException

public GeneralSecurityException(java.lang.String msg)

Create a new instance with a descriptive error message.

Parameters: