Package org.bouncycastle.crypto
Class PlainInputProcessingException
java.lang.Object
java.lang.Throwable
java.lang.Exception
java.io.IOException
org.bouncycastle.crypto.StreamException
org.bouncycastle.crypto.PlainInputProcessingException
- All Implemented Interfaces:
Serializable
Exception thrown when something unexpected is encountered processing plain text input data for signature or block encryption.
- See Also:
-
Constructor Summary
ConstructorsConstructorDescriptionBase constructor.PlainInputProcessingException
(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
-
PlainInputProcessingException
Base constructor.- Parameters:
msg
- a message concerning the exception.
-
PlainInputProcessingException
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.
-