org.openide.debugger
Class DebuggerException

java.lang.Object
  |
  +--java.lang.Throwable
        |
        +--java.lang.Exception
              |
              +--java.lang.reflect.InvocationTargetException
                    |
                    +--org.openide.debugger.DebuggerException
All Implemented Interfaces:
Serializable
Direct Known Subclasses:
DebuggerNotFoundException

public class DebuggerException
extends InvocationTargetException

An exception occurring in the debugger. This exception is thrown in the debugger from all methods which may involve running user code.

See Also:
Serialized Form

Constructor Summary
DebuggerException(String description)
          Construct a DebuggerException with a description.
DebuggerException(String description, Throwable throwable)
          Construct a DebuggerException with a description and base error.
DebuggerException(Throwable throwable)
          Construct a DebuggerException for a specified inner exception.
 
Methods inherited from class java.lang.reflect.InvocationTargetException
getTargetException, printStackTrace, printStackTrace, printStackTrace
 
Methods inherited from class java.lang.Throwable
fillInStackTrace, getLocalizedMessage, getMessage, toString
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
 

Constructor Detail

DebuggerException

public DebuggerException(Throwable throwable)
Construct a DebuggerException for a specified inner exception.
Parameters:
throwable - the basic exception

DebuggerException

public DebuggerException(String description)
Construct a DebuggerException with a description.
Parameters:
message - message text

DebuggerException

public DebuggerException(String description,
                         Throwable throwable)
Construct a DebuggerException with a description and base error.
Parameters:
message - description of the exception
throwable - original exception


Built on December 12 2001.  |  Portions Copyright 1997-2001 Sun Microsystems, Inc. All rights reserved.