com.sun.squawk
Class Debugger.ExceptionEvent
java.lang.Object
com.sun.squawk.Debugger.Event
com.sun.squawk.Debugger.LocationEvent
com.sun.squawk.Debugger.ExceptionEvent
- Enclosing class:
- Debugger
public static class Debugger.ExceptionEvent
- extends Debugger.LocationEvent
| Fields inherited from class com.sun.squawk.Debugger.Event |
BREAKPOINT, CLASS_LOAD, CLASS_PREPARE, CLASS_UNLOAD, EXCEPTION, EXCEPTION_CATCH, FIELD_ACCESS, FIELD_MODIFICATION, FRAME_POP, kind, METHOD_ENTRY, METHOD_EXIT, object, SINGLE_STEP, THREAD_DEATH, THREAD_END, THREAD_START, USER_DEFINED, VM_DEATH, VM_DISCONNECTED, VM_INIT, VM_START |
|
Method Summary |
String |
toString()
Returns a string representation of the object. |
catchLocation
public final VMThread.ExecutionPoint catchLocation
isCaught
public final boolean isCaught
Debugger.ExceptionEvent
public Debugger.ExceptionEvent(Throwable exception,
VMThread.ExecutionPoint throwLocation,
VMThread.ExecutionPoint catchLocation,
boolean isCaught)
toString
public String toString()
- Description copied from class:
Object
- Returns a string representation of the object. In general, the
toString method returns a string that
"textually represents" this object. The result should
be a concise but informative representation that is easy for a
person to read.
It is recommended that all subclasses override this method.
The toString method for class Object
returns a string consisting of the name of the class of which the
object is an instance, the at-sign character `@', and
the unsigned hexadecimal representation of the hash code of the
object. In other words, this method returns a string equal to the
value of:
getClass().getName() + '@' + Integer.toHexString(hashCode())
- Overrides:
toString in class Debugger.LocationEvent
- Returns:
- a string representation of the object.
Copyright © 2006 Sun Microsystems, Inc. All Rights Reserved.