home *** CD-ROM | disk | FTP | other *** search
/ Chip 1999 September / CHIPCD_9_99.iso / software / uaktualnienia / OptionPackPL / iis4_07.cab / AspComponentException.java < prev    next >
Encoding:
Java Source  |  1998-04-27  |  783 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.