1 33 34 package edu.rice.cs.drjava.model.repl; 35 36 42 public class InterpreterInterruptedException extends RuntimeException { 43 public final int startLine; 44 public final int startColumn; 45 public final int endLine; 46 public final int endColumn; 47 48 public InterpreterInterruptedException(int sl, int sc, int el, int ec) { 49 super("Interrupted between (" + sl + "," + sc + ") and " + 50 "(" + el + ", " + ec + ")"); 51 startLine = sl; 52 startColumn = sc; 53 endLine = el; 54 endColumn = ec; 55 } 56 } 57 | Popular Tags |