Initial revision

This commit is contained in:
benfry
2001-07-26 17:09:40 +00:00
parent 7bdf3e0ea7
commit 15f4908cb6
13 changed files with 2350 additions and 0 deletions

View File

@@ -0,0 +1,23 @@
public class PdeException extends Exception {
int line = -1;
public PdeException() { }
public PdeException(String message) {
super(message);
}
public PdeException(String message, int line) {
super(message);
this.line = line;
}
#ifndef PLAYER
#ifdef DBN
public PdeException(String message, DbnToken token) {
super(message + ", token: " + token.toString());
}
#endif
#endif
}