home *** CD-ROM | disk | FTP | other *** search
/ Symantec Visual Cafe for Java 2.5 / symantec-visual-cafe-2.5-database-dev-edition.iso / VPage / Java.bin / CLASSES.ZIP / java / io / WriteAbortedException.class (.txt) < prev    next >
Encoding:
Java Class File  |  1997-07-08  |  789 b   |  15 lines

  1. package java.io;
  2.  
  3. public class WriteAbortedException extends ObjectStreamException {
  4.    public Exception detail;
  5.  
  6.    public WriteAbortedException(String var1, Exception var2) {
  7.       super(var1);
  8.       this.detail = var2;
  9.    }
  10.  
  11.    public String getMessage() {
  12.       return this.detail == null ? super.getMessage() : super.getMessage() + "; " + this.detail.toString();
  13.    }
  14. }
  15.