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:
java.io.Serializable
public class InvalidSignatureException extends StreamException
Exception thrown when something unexpected is encountered in verifying a signature.- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description InvalidSignatureException(java.lang.String msg)
Base constructor.InvalidSignatureException(java.lang.String msg, java.lang.Throwable cause)
Constructor when this exception is due to another one.
-
Method Summary
-
Methods inherited from class org.bouncycastle.crypto.StreamException
getCause
-
-
-
-
Constructor Detail
-
InvalidSignatureException
public InvalidSignatureException(java.lang.String msg)
Base constructor.- Parameters:
msg
- a message concerning the exception.
-
InvalidSignatureException
public InvalidSignatureException(java.lang.String msg, java.lang.Throwable cause)
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.
-
-