1 17 package javax.servlet; 18 19 20 27 public class ServletException extends Exception { 28 29 32 public ServletException() { 33 super(); 34 } 35 36 45 public ServletException(String message) { 46 super(message); 47 } 48 49 63 public ServletException(String message, Throwable rootCause) { 64 super(message, rootCause); 65 } 66 67 85 public ServletException(Throwable rootCause) { 86 super(rootCause); 87 } 88 89 95 public Throwable getRootCause() { 96 return getCause(); 97 } 98 } 99 | Popular Tags |