Appearance
| 1 | namespace Driver is | |
| 2 | use System.Exception | |
| 3 | ||
| 4 | // A fault in what the compiler was asked to compile rather than a fault in | |
| 5 | // the compiler: an input file that is not where the command line says it | |
| 6 | // is, and the like. The driver reports the message on its own, where a | |
| 7 | // failure inside the compiler is reported with its stack trace so that the | |
| 8 | // compiler can be debugged from it. | |
| 9 | class INPUT_EXCEPTION(message: string): Exception is | |
| 10 | super(message) | |
| 11 | si | |
| 12 | si |