Package org.bouncycastle.crypto
Class InvalidSignatureException
java.lang.Object
java.lang.Throwable
java.lang.Exception
java.io.IOException
org.bouncycastle.crypto.StreamException
org.bouncycastle.crypto.InvalidSignatureException
- All Implemented Interfaces:
Serializable
Exception thrown when something unexpected is encountered in verifying a signature.
- See Also:
-
Constructor Summary
ConstructorsConstructorDescriptionBase constructor.InvalidSignatureException
(String msg, Throwable cause) Constructor when this exception is due to another one. -
Method Summary
Methods inherited from class org.bouncycastle.crypto.StreamException
getCause
Methods inherited from class java.lang.Throwable
addSuppressed, fillInStackTrace, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
-
Constructor Details
-
InvalidSignatureException
Base constructor.- Parameters:
msg
- a message concerning the exception.
-
InvalidSignatureException
Constructor when this exception is due to another one.- Parameters:
msg
- a message concerning the exception.cause
- the exception that caused this exception to be thrown.
-