home *** CD-ROM | disk | FTP | other *** search
/ PC Professionell 2004 December / PCpro_2004_12.ISO / files / webserver / xampp / xampp-tomcat-addon-1.4.9-installer.exe / jsp-api.jar / javax / servlet / jsp / SkipPageException.class (.txt) < prev   
Encoding:
Java Class File  |  2004-08-28  |  762 b   |  19 lines

  1. package javax.servlet.jsp;
  2.  
  3. public class SkipPageException extends JspException {
  4.    public SkipPageException() {
  5.    }
  6.  
  7.    public SkipPageException(String message) {
  8.       super(message);
  9.    }
  10.  
  11.    public SkipPageException(String message, Throwable rootCause) {
  12.       super(message, rootCause);
  13.    }
  14.  
  15.    public SkipPageException(Throwable rootCause) {
  16.       super(rootCause);
  17.    }
  18. }
  19.