1 17 package javax.servlet.jsp; 18 19 36 public class SkipPageException 37 extends JspException  38 { 39 42 public SkipPageException() { 43 super(); 44 } 45 46 51 public SkipPageException( String message ) { 52 super( message ); 53 } 54 55 61 public SkipPageException( String message, Throwable rootCause ) { 62 super( message, rootCause ); 63 } 64 65 70 public SkipPageException( Throwable rootCause ) { 71 super( rootCause ); 72 } 73 74 } 75 76 77 | Popular Tags |