home *** CD-ROM | disk | FTP | other *** search
/ Australian Personal Computer 2000 November / APCD25112k.iso / feature / webserv / SAMBAR43.ZIP / _SETUP.1 / javaeng.jar / javax / servlet / jsp / JspException.java < prev    next >
Encoding:
Java Source  |  2000-04-03  |  1002 b   |  27 lines

  1. /*
  2.  * JspException.java
  3.  * 
  4.  * Copyright (c) 1999 by Free Software Foundation, Inc.
  5.  * Written by Wes Biggs (wes@cacas.org)
  6.  * 
  7.  * This program is free software; you can redistribute it and/or modify
  8.  * it under the terms of the GNU Library General Public License as published
  9.  * by the Free Software Foundation, version 2. (see COPYING.LIB)
  10.  *
  11.  * This program is distributed in the hope that it will be useful, but
  12.  * WITHOUT ANY WARRANTY; without even the implied warranty of
  13.  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  14.  * GNU General Public License for more details.
  15.  *
  16.  * You should have received a copy of the GNU General Public License
  17.  * along with this program; if not, write to the Free Software Foundation  
  18.  * Inc., 59 Temple Place - Suite 330, Boston, MA  02111-1307 USA
  19.  */
  20.  
  21. package javax.servlet.jsp;
  22.  
  23. public class JspException extends Exception {
  24.     public JspException() { super(); }
  25.     public JspException(String msg) { super(msg); }
  26. }
  27.