home *** CD-ROM | disk | FTP | other *** search
/ io Programmo 9 / IOPROG_9.ISO / contrib / iis4 / iis4_07.cab / AspComponentException.java < prev    next >
Encoding:
Java Source  |  1997-09-04  |  763 b   |  22 lines

  1. /*    ********************************************************************************
  2.     AspComponentException.java *****************************************************
  3.     ********************************************************************************  */
  4.  
  5. package aspcomp;
  6.  
  7. /**
  8.  * Generic exception raised by the framework.
  9.  */
  10.  
  11. public class AspComponentException 
  12.     extends RuntimeException
  13. {
  14.  
  15. /*    ********************************************************************************
  16.     Constructors *******************************************************************
  17.     ********************************************************************************  */
  18.  
  19.     public AspComponentException() {}
  20.     public AspComponentException(String str) { super(str); }
  21. }
  22.