home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Dynamic HTML Construction Kit
/
Dynamic HTML Construction Kit.iso
/
earthlink
/
nscomm
/
java40.jar
/
java
/
io
/
WriteAbortedException.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-11-03
|
731 b
|
15 lines
package java.io;
public class WriteAbortedException extends ObjectStreamException {
public Exception detail;
public WriteAbortedException(String var1, Exception var2) {
super(var1);
this.detail = var2;
}
public String getMessage() {
return this.detail == null ? super.getMessage() : super.getMessage() + "; " + this.detail.toString();
}
}