Class DataLengthException
-
- All Implemented Interfaces:
-
java.io.Serializable
public class DataLengthException extends RuntimeCryptoException
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.
-
-
Constructor Summary
Constructors Constructor Description DataLengthException()
base constructor. DataLengthException(String message)
create a DataLengthException with the given message.
-
Method Summary
Modifier and Type Method Description -
Methods inherited from class java.lang.Throwable
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, setStackTrace, toString
-
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
-
-
Constructor Detail
-
DataLengthException
DataLengthException()
base constructor.
-
DataLengthException
DataLengthException(String message)
create a DataLengthException with the given message.- Parameters:
message
- the message to be carried with the exception.
-
-
-
-