home *** CD-ROM | disk | FTP | other *** search
/ PC Pro 1999 April / DPPCPRO0499.ISO / April / Notes / 50b2wic.exe / DATA1.CAB / NotesProgramFilesJavaSupport / rt.jar / java / io / WriteAbortedException.class (.txt) < prev    next >
Encoding:
Java Class File  |  1998-04-23  |  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.