com.novell.java.security
Class GeneralSecurityException

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

public class GeneralSecurityException
extends java.lang.Exception

Groups all the exception classes of the java.security package that extend from it. Exceptions extending from GeneralSecurityException include AccessControlException and CertificateException, which subclass from java.lang.SecurityException, and ProviderException and InvalidParameterException, which subclass from java.lang.RuntimeException.


Constructor Summary
GeneralSecurityException()
          Constructs a GeneralSecurityException with no detail message.
GeneralSecurityException(java.lang.String msg)
          Constructs a GeneralSecurityException with the specified detail message.
 
Methods inherited from class java.lang.Throwable
fillInStackTrace, getLocalizedMessage, getMessage, printStackTrace, printStackTrace, printStackTrace, toString
 
Methods inherited from class java.lang.Object
equals, getClass, hashCode, notify, notifyAll, wait, wait, wait
 

Constructor Detail

GeneralSecurityException

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

GeneralSecurityException

public GeneralSecurityException(java.lang.String msg)
Constructs a GeneralSecurityException with the specified detail message. A detail message is a String that describes this particular exception.
Parameters:
msg - The detail message.