Package org.bouncycastle.crypto
Class DataLengthException
java.lang.Object
java.lang.Throwable
java.lang.Exception
java.lang.RuntimeException
org.bouncycastle.crypto.RuntimeCryptoException
org.bouncycastle.crypto.DataLengthException
- All Implemented Interfaces:
Serializable
this exception is thrown if a buffer that is meant to have output
copied into it turns out to be too short, or if we've been given
insufficient input. In general this exception will get thrown rather
than an ArrayOutOfBounds exception.
- See Also:
-
Constructor Summary
ConstructorDescriptionbase constructor.DataLengthException
(String message) create a DataLengthException with the given message. -
Method Summary
Methods inherited from class java.lang.Throwable
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
-
Constructor Details
-
DataLengthException
public DataLengthException()base constructor. -
DataLengthException
create a DataLengthException with the given message.- Parameters:
message
- the message to be carried with the exception.
-