FileDocCategorySizeDatePackage
DataLengthException.javaAPI DocAzureus 3.0.3.4695Tue Jun 08 05:12:58 BST 2004org.bouncycastle.crypto

DataLengthException

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.

Fields Summary
Constructors Summary
public DataLengthException()
base constructor.

    
public DataLengthException(String message)
create a DataLengthException with the given message.

param
message the message to be carried with the exception.

        super(message);
    
Methods Summary