home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Chip 1999 September
/
CHIPCD_9_99.iso
/
software
/
uaktualnienia
/
OptionPackPL
/
iis4_07.cab
/
AspIOException.java
< prev
next >
Wrap
Text File
|
1998-04-27
|
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); }
}