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:
 
  - AccessControlException and RMISecurityException, which subclass java.lang.SecurityException
  
 - ProviderException, which subclasses java.lang.RuntimeException
  
 - InvalidParameterException, which subclasses java.lang.IllegalArgumentException
 
 
- Version:
 
  - 1.11, 01/12/03
 
- Author:
 
  - Jan Luehe
 
- See Also:
 - Serialized Form
 
 
| Fields inherited from class java.lang.Exception | 
 | 
 
| Fields inherited from class java.lang.Throwable | 
 | 
 
 
| Methods inherited from class java.lang.Throwable | 
backtrace, eStack, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, initCause, javaStack, leaf, printStackTrace, printStackTrace, printStackTrace, printThrowableOn, setStackTrace, toString, unwrap | 
 
 
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?