|
|||||||||||||||||||
| Source file | Conditionals | Statements | Methods | TOTAL | |||||||||||||||
| SourceException.java | - | 0% | 0% | 0% |
|
||||||||||||||
| 1 | package edu.rice.cs.dynamicjava.sourcechecker; | |
| 2 | ||
| 3 | import java.io.IOException; | |
| 4 | import java.io.PrintWriter; | |
| 5 | ||
| 6 | import edu.rice.cs.dynamicjava.interpreter.InterpreterException; | |
| 7 | ||
| 8 | /** Represents a file system-level problem that occurs in accessing a source file. */ | |
| 9 | public class SourceException extends InterpreterException { | |
| 10 | ||
| 11 | 0 | public SourceException(IOException e) { super(e); } |
| 12 | ||
| 13 | 0 | public void printUserMessage(PrintWriter out) { |
| 14 | 0 | getCause().printStackTrace(out); |
| 15 | } | |
| 16 | ||
| 17 | } |
|
||||||||||