home *** CD-ROM | disk | FTP | other *** search
/ io Programmo 39 / IOPROG_39.ISO / SOFT / sdkjava40.exe / data1.cab / fg_Samples / Samples / ASP / aspcomp / AspIOException.java < prev    next >
Encoding:
Java Source  |  2000-05-04  |  800 b   |  24 lines

  1. /*  ********************************************************************************
  2.     AspIOException.java ************************************************************
  3.     ********************************************************************************  */
  4.  
  5. package aspcomp;
  6.  
  7. import java.io.IOException;
  8.  
  9. /**
  10.  * Exception thrown if binary read/write through ASP fail
  11.  */
  12.  
  13. public class AspIOException 
  14.     extends IOException
  15. {
  16.  
  17. /*  ********************************************************************************
  18.     Constructors *******************************************************************
  19.     ********************************************************************************  */
  20.  
  21.     public AspIOException() {}
  22.     public AspIOException(String str) { super(str); }
  23. }
  24.