Package java.security
Class SignatureException
java.lang.Object
java.lang.Throwable
java.lang.Exception
java.security.GeneralSecurityException
java.security.SignatureException
- All Implemented Interfaces:
Serializable
public class SignatureException extends GeneralSecurityException
SignatureException is a general Signature exception.- See Also:
Signature, Serialized Form
-
Constructor Summary
Constructors Constructor Description SignatureException()Constructs a new instance ofSignatureException.SignatureException(String msg)Constructs a new instance ofSignatureExceptionwith the given message.SignatureException(String message, Throwable cause)Constructs a new instance ofSignatureExceptionwith the given message and the cause.SignatureException(Throwable cause)Constructs a new instance ofSignatureExceptionwith the cause. -
Method Summary
Methods inherited from class java.lang.Throwable
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
-
Constructor Details
-
SignatureException
Constructs a new instance ofSignatureExceptionwith the given message.- Parameters:
msg- the detail message for this exception.
-
SignatureException
public SignatureException()Constructs a new instance ofSignatureException. -
SignatureException
Constructs a new instance ofSignatureExceptionwith the given message and the cause.- Parameters:
message- the detail message for this exceptioncause- the exception which is the cause for this exception
-
SignatureException
Constructs a new instance ofSignatureExceptionwith the cause.- Parameters:
cause- the exception which is the cause for this exception
-