1 2 package org.roller.presentation; 3 4 import javax.servlet.jsp.JspException ; 5 6 9 public class AccessDeniedException extends JspException 10 { 11 public AccessDeniedException(String s,Throwable t) 12 { 13 super(s,t); 14 } 15 public AccessDeniedException(Throwable t) 16 { 17 super(t); 18 } 19 public AccessDeniedException(String s) 20 { 21 super(s); 22 } 23 public AccessDeniedException() 24 { 25 super(); 26 } 27 } 28 29 | Popular Tags |