edu.rice.cs.drjava.model.repl
Class InterpreterInterruptedException

java.lang.Object
  |
  +--java.lang.Throwable
        |
        +--java.lang.Exception
              |
              +--java.lang.RuntimeException
                    |
                    +--edu.rice.cs.drjava.model.repl.InterpreterInterruptedException
All Implemented Interfaces:
Serializable

public class InterpreterInterruptedException
extends RuntimeException

Exception to signify that the interpreter was interrupted before it could complete.

Version:
$Id: InterpreterInterruptedException.java,v 1.4 2002/02/08 14:22:21 brianstoler Exp $
See Also:
Serialized Form

Field Summary
 int endColumn
           
 int endLine
           
 int startColumn
           
 int startLine
           
 
Fields inherited from class java.lang.Throwable
backtrace, detailMessage, serialVersionUID
 
Constructor Summary
InterpreterInterruptedException(int sl, int sc, int el, int ec)
           
 
Methods inherited from class java.lang.Throwable
fillInStackTrace, getLocalizedMessage, getMessage, printStackTrace, printStackTrace, printStackTrace, printStackTrace0, toString
 
Methods inherited from class java.lang.Object
, clone, equals, finalize, getClass, hashCode, notify, notifyAll, registerNatives, wait, wait, wait
 

Field Detail

startLine

public final int startLine

startColumn

public final int startColumn

endLine

public final int endLine

endColumn

public final int endColumn
Constructor Detail

InterpreterInterruptedException

public InterpreterInterruptedException(int sl,
                                       int sc,
                                       int el,
                                       int ec)