Package org.bouncycastle.crypto
Class FinishedException
java.lang.Object
java.lang.Throwable
java.lang.Exception
java.lang.RuntimeException
org.bouncycastle.crypto.RuntimeStreamException
org.bouncycastle.crypto.FinishedException
- All Implemented Interfaces:
Serializable
A runtime exception that may be thrown by a finished operation on an
UpdateOutputStream if the underlying stream throws an IOException.
- See Also:
-
Constructor Summary
ConstructorsConstructorDescriptionFinishedException
(String msg) Base constructor.FinishedException
(String msg, Throwable cause) Constructor when this exception is due to another one. -
Method Summary
Methods inherited from class java.lang.Throwable
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
-
Constructor Details
-
FinishedException
Base constructor.- Parameters:
msg
- a message concerning the exception.
-
FinishedException
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.
-