Package org.bouncycastle.crypto
Class UpdateException
- java.lang.Object
-
- java.lang.Throwable
-
- java.lang.Exception
-
- java.lang.RuntimeException
-
- org.bouncycastle.crypto.RuntimeStreamException
-
- org.bouncycastle.crypto.UpdateException
-
- All Implemented Interfaces:
java.io.Serializable
public class UpdateException extends RuntimeStreamException
A runtime exception that may be thrown by an update operation on an UpdateOutputStream if the underlying stream throws an IOException.- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description UpdateException(java.lang.String msg)
Base constructor.UpdateException(java.lang.String msg, java.lang.Throwable cause)
Constructor when this exception is due to another one.
-
-
-
Constructor Detail
-
UpdateException
public UpdateException(java.lang.String msg)
Base constructor.- Parameters:
msg
- a message concerning the exception.
-
UpdateException
public UpdateException(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.
-
-