java.security
Class GeneralSecurityException

java.lang.Object
  |
  +--java.lang.Throwable
        |
        +--java.lang.Exception
              |
              +--java.security.GeneralSecurityException
All Implemented Interfaces:
Serializable
Direct Known Subclasses:
DigestException, InvalidAlgorithmParameterException, InvalidKeySpecException, InvalidParameterSpecException, KeyException, KeyStoreException, NoSuchAlgorithmException, NoSuchProviderException, SignatureException, UnrecoverableKeyException

public class GeneralSecurityException
extends Exception

Untamed: This is the general security exception class, which serves to group all the exception classes of the java.security package that extend from it.

The exceptions to this grouping are:

Version:
1.11, 01/12/03
Author:
Jan Luehe
See Also:
Serialized Form

Field Summary
 
Fields inherited from class java.lang.Exception
 
Fields inherited from class java.lang.Throwable
 
Constructor Summary
GeneralSecurityException()
          Enabled: Constructs a GeneralSecurityException with no detail message.
GeneralSecurityException(String msg)
          Enabled: Constructs a GeneralSecurityException with the specified detail message.
 
Methods inherited from class java.lang.Throwable
backtrace, eStack, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, initCause, javaStack, leaf, printStackTrace, printStackTrace, printStackTrace, printThrowableOn, setStackTrace, toString, unwrap
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
 

Constructor Detail

GeneralSecurityException

public GeneralSecurityException()
Enabled: Constructs a GeneralSecurityException with no detail message.


GeneralSecurityException

public GeneralSecurityException(String msg)
Enabled: Constructs a GeneralSecurityException with the specified detail message. A detail message is a String that describes this particular exception.

Parameters:
msg - the detail message.


comments?