1 28 29 package com.caucho.server.dispatch; 30 31 import com.caucho.util.CompileException; 32 33 import javax.servlet.ServletException ; 34 35 38 public class ServletConfigException extends ServletException  39 implements CompileException { 40 43 public ServletConfigException() 44 { 45 super(); 46 } 47 48 51 public ServletConfigException(String msg) 52 { 53 super(msg); 54 } 55 56 59 public ServletConfigException(String msg, Throwable e) 60 { 61 super(msg, e); 62 } 63 64 67 public ServletConfigException(Throwable e) 68 { 69 super(e); 70 } 71 } 72 | Popular Tags |