Package org.bouncycastle.crypto
Class InvalidCipherTextException
- java.lang.Object
-
- java.lang.Throwable
-
- java.lang.Exception
-
- java.io.IOException
-
- org.bouncycastle.crypto.StreamException
-
- org.bouncycastle.crypto.InvalidCipherTextException
-
- All Implemented Interfaces:
java.io.Serializable
public class InvalidCipherTextException extends StreamException
Exception thrown when something unexpected is encountered processing an encrypted stream.- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description InvalidCipherTextException(java.lang.String msg)
Base constructor.InvalidCipherTextException(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
-
InvalidCipherTextException
public InvalidCipherTextException(java.lang.String msg)
Base constructor.- Parameters:
msg
- a message concerning the exception.
-
InvalidCipherTextException
public InvalidCipherTextException(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.
-
-