home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
ftp.ee.pdx.edu
/
2014.02.ftp.ee.pdx.edu.tar
/
ftp.ee.pdx.edu
/
pub
/
users
/
Harry
/
compilers
/
p8
/
FatalError.java
< prev
next >
Wrap
Text File
|
2006-01-29
|
631b
|
25 lines
// ---------------------- FatalError -----------------------
//
// This exception should be thrown to terminate the compiler. If
// a message is provided, it will be printed first.
//
// This class has been changed slightly from Project 2, to add
// the second constructor.
//
// See also the subclass called "LogicError":
// FatalError -- stack trace is NOT printed
// LogicError -- stack trace is printed
//
// Harry Porter -- 01/15/03
// -- 02/04/04
//
class FatalError extends Exception {
FatalError (String message) {
super (message);
}
FatalError () {
super ();
}
}