home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
PC Online 1997 August
/
PCO0897.ISO
/
filesbbs
/
os2
/
fp1os2.arj
/
OS2
/
DATA
/
49
/
C
/
0
/
F_26836
/
JSbxExceptionBase.class
(
.txt
)
< prev
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
Macintosh to JP
NeXTSTEP
RISC OS/Acorn
Shift JIS
UTF-8
Wrap
Java Class File
|
1997-05-15
|
521 b
|
18 lines
abstract class JSbxExceptionBase extends Exception {
public static final int JSE_NO_ERROR = 0;
private int nError;
public JSbxExceptionBase() {
this.nError = 0;
}
public JSbxExceptionBase(int var1, String var2) {
super(var2);
this.nError = var1;
}
public int GetError() {
return this.nError;
}
}