You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
21 lines
497 B
21 lines
497 B
15 years ago
|
package netscape.javascript;
|
||
|
|
||
|
public class JSException extends Exception {
|
||
|
public JSException() {}
|
||
|
public JSException(String s) {
|
||
|
super(s);
|
||
|
}
|
||
|
public JSException(String s, String fn, int ln, String src, int ti) {
|
||
|
super(s);
|
||
|
filename = new String(fn);
|
||
|
linenumber = ln;
|
||
|
source = src;
|
||
|
tokenindex = ti;
|
||
|
}
|
||
|
private String filename = null;
|
||
|
private int linenumber;
|
||
|
private String source = null;
|
||
|
private int tokenindex;
|
||
|
}
|
||
|
|