public class

DataLengthException

extends RuntimeCryptoException
java.lang.Object
   ↳ java.lang.Throwable
     ↳ java.lang.Exception
       ↳ java.lang.RuntimeException
         ↳ org.bouncycastle.crypto.RuntimeCryptoException
           ↳ org.bouncycastle.crypto.DataLengthException

Class Overview

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.

Summary

Public Constructors
DataLengthException()
base constructor.
DataLengthException(String message)
create a DataLengthException with the given message.
[Expand]
Inherited Methods
From class java.lang.Throwable
From class java.lang.Object

Public Constructors

public DataLengthException ()

base constructor.

public DataLengthException (String message)

create a DataLengthException with the given message.

Parameters
message the message to be carried with the exception.