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

DebugeeException

public class DebugeeException extends Exception
This exception is raised in case of generic debugger error. The possible causes for this exception are unexpected JDWP reply packet error code, incorrect information inside JDWP packet, network problems etc. The raising of this exception generally means a fatal error of KJDB.

Fields Summary
Constructors Summary
public DebugeeException()
Creates new DebugeeException without detail message.

    
public DebugeeException(String msg)
Constructs an DebugeeException with the specified detail message.

param
msg the detail message.

        super(msg);
    
Methods Summary