home *** CD-ROM | disk | FTP | other *** search
/ S283 Planetary Science &n…he Search for Life DVD 2 / DVD-ROM.iso / install / jre1_3 / lib / rt.jar / java / awt / print / PrinterIOException.class (.txt) < prev    next >
Encoding:
Java Class File  |  1979-12-31  |  415 b   |  17 lines

  1. package java.awt.print;
  2.  
  3. import java.io.IOException;
  4.  
  5. public class PrinterIOException extends PrinterException {
  6.    private IOException mException;
  7.  
  8.    public PrinterIOException(IOException var1) {
  9.       super(((Throwable)var1).toString());
  10.       this.mException = var1;
  11.    }
  12.  
  13.    public IOException getIOException() {
  14.       return this.mException;
  15.    }
  16. }
  17.