Package org.bouncycastle.crypto
Class RuntimeStreamException
- java.lang.Object
-
- java.lang.Throwable
-
- java.lang.Exception
-
- java.lang.RuntimeException
-
- org.bouncycastle.crypto.RuntimeStreamException
-
- All Implemented Interfaces:
java.io.Serializable
- Direct Known Subclasses:
OperatorNotReadyException
,UpdateException
public class RuntimeStreamException extends java.lang.RuntimeException
Parent class for exceptions arising due to cryptographic operations in the various streams created by the FIPS factory classes.- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description RuntimeStreamException(java.lang.String msg)
Base constructor.RuntimeStreamException(java.lang.String msg, java.lang.Throwable cause)
Constructor when this exception is due to another one.
-
-
-
Constructor Detail
-
RuntimeStreamException
public RuntimeStreamException(java.lang.String msg)
Base constructor.- Parameters:
msg
- a message concerning the exception.
-
RuntimeStreamException
public RuntimeStreamException(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.
-
-