FileDocCategorySizeDatePackage
BoundException.javaAPI DocphoneME MR2 API (J2ME)1833Wed May 02 17:59:48 BST 2007com.sun.cldchi.tools.memoryprofiler.jdwp

BoundException

public class BoundException extends Exception
This exception is raised by methods of Packet and its subclasses when JDWP packet is malformed and we try to read some data but see end of packet (for example, if we try to read int value from packet by ByteBuffer.getInt() but there is no more data in packet). Usually raising of this exception indicates fatal error.

Fields Summary
Constructors Summary
public BoundException()
Constructs an Exception with no specified detail message

    
public BoundException(String msg)
Constructs an Exception with the specified detail message

param
msg the detail message

        super(msg);
    
Methods Summary