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