Class X509ExtensionException
- java.lang.Object
-
- java.lang.Throwable
-
- java.lang.Exception
-
- java.security.GeneralSecurityException
-
- org.mozilla.jss.netscape.security.x509.X509ExtensionException
-
- All Implemented Interfaces:
java.io.Serializable
public class X509ExtensionException extends java.security.GeneralSecurityException
X.509 Extension Exception.- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description X509ExtensionException()
Constructs an X509ExtensionException with no detail message.X509ExtensionException(java.lang.String mesg)
Constructs the exception with the specified detail message.X509ExtensionException(java.lang.String mesg, java.lang.Throwable cause)
Constructs the exception with the specified detail message and cause of this exception.X509ExtensionException(java.lang.Throwable cause)
Constructs the exception with the specified cause of this exception.
-
-
-
Constructor Detail
-
X509ExtensionException
public X509ExtensionException()
Constructs an X509ExtensionException with no detail message. A detail message is a String that describes this particular exception.
-
X509ExtensionException
public X509ExtensionException(java.lang.String mesg)
Constructs the exception with the specified detail message. A detail message is a String that describes this particular exception.- Parameters:
mesg
- the detail message.
-
X509ExtensionException
public X509ExtensionException(java.lang.String mesg, java.lang.Throwable cause)
Constructs the exception with the specified detail message and cause of this exception. A detail message is a String that describes this particular exception.- Parameters:
mesg
- the detail message.cause
- the cause of this exception.
-
X509ExtensionException
public X509ExtensionException(java.lang.Throwable cause)
Constructs the exception with the specified cause of this exception.- Parameters:
cause
- the cause of this exception.
-
-