home *** CD-ROM | disk | FTP | other *** search
Java Source | 1998-04-27 | 783 b | 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); }
- }
-