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