1 17 18 package org.apache.jasper; 19 20 26 public class JasperException extends javax.servlet.ServletException { 27 28 public JasperException(String reason) { 29 super(reason); 30 } 31 32 36 public JasperException (String reason, Throwable exception) { 37 super(reason, exception); 38 } 39 40 43 public JasperException (Throwable exception) { 44 super(exception); 45 } 46 } 47 | Popular Tags |