home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Chip 1998 February
/
CHIP_2_98.iso
/
software
/
pelne
/
optionp
/
iis4_07.cab
/
AspComponentException.java
< prev
next >
Wrap
Text File
|
1997-10-25
|
783b
|
22 lines
/* ********************************************************************************
AspComponentException.java *****************************************************
******************************************************************************** */
package aspcomp;
/**
* Generic exception raised by the framework.
*/
public class AspComponentException
extends RuntimeException
{
/* ********************************************************************************
Constructors *******************************************************************
******************************************************************************** */
public AspComponentException() {}
public AspComponentException(String str) { super(str); }
}