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