FileDocCategorySizeDatePackage
ShortBufferException.javaAPI DocphoneME MR2 API (J2ME)2182Wed May 02 18:00:38 BST 2007javax.crypto

ShortBufferException

public class ShortBufferException extends GeneralSecurityException
This exception is thrown when an output buffer provided by the user is too short to hold the operation result.
version
1.3, 01/23/03
since
1.4

Fields Summary
Constructors Summary
public ShortBufferException()
Constructs a ShortBufferException with no detail message. A detail message is a String that describes this particular exception.

	super();
    
public ShortBufferException(String msg)
Constructs a ShortBufferException with the specified detail message. A detail message is a String that describes this particular exception, which may, for example, specify which algorithm is not available.

param
msg the detail message.

	super(msg);
    
Methods Summary