java.security
Class GeneralSecurityException
java.lang.Object
|
+--java.lang.Throwable
|
+--java.lang.Exception
|
+--java.security.GeneralSecurityException
public class
GeneralSecurityExceptionextends
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:- Aaron M. Renn <arenn@urbanophile.com>
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:
AccessControlException
andCertificateException
(which extendSecurityException
),ProviderException
(RuntimeException
), andInvalidParamterException
(IllegalArgumentException
).