home *** CD-ROM | disk | FTP | other *** search
/ Chip 1998 February / CHIP_2_98.iso / software / pelne / optionp / iis4_07.cab / AspIOException.java < prev    next >
Text File  |  1997-10-25  |  800b  |  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.