home *** CD-ROM | disk | FTP | other *** search
Java Source | 1997-09-04 | 780 b | 24 lines |
- /* ********************************************************************************
- AspIOException.java ************************************************************
- ******************************************************************************** */
-
- package aspcomp;
-
- import java.io.IOException;
-
- /**
- * Exception thrown if binary read/write through ASP fail
- */
-
- public class AspIOException
- extends IOException
- {
-
- /* ********************************************************************************
- Constructors *******************************************************************
- ******************************************************************************** */
-
- public AspIOException() {}
- public AspIOException(String str) { super(str); }
- }
-