Package com.twelvemonkeys.servlet
Class ServletConfigException
- java.lang.Object
-
- java.lang.Throwable
-
- java.lang.Exception
-
- javax.servlet.ServletException
-
- com.twelvemonkeys.servlet.ServletConfigException
-
- All Implemented Interfaces:
java.io.Serializable
public class ServletConfigException extends javax.servlet.ServletException
ServletConfigException.- Version:
- $Id: ServletConfigException.java#2 $
- Author:
- Harald Kuhr
- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description ServletConfigException(java.lang.String pMessage)
Creates aServletConfigException
with the given message.ServletConfigException(java.lang.String pMessage, java.lang.Throwable pCause)
Creates aServletConfigException
with the given message and cause.ServletConfigException(java.lang.Throwable pCause)
Creates aServletConfigException
with the cause.
-
-
-
Constructor Detail
-
ServletConfigException
public ServletConfigException(java.lang.String pMessage)
Creates aServletConfigException
with the given message.- Parameters:
pMessage
- the exception message
-
ServletConfigException
public ServletConfigException(java.lang.String pMessage, java.lang.Throwable pCause)
Creates aServletConfigException
with the given message and cause.- Parameters:
pMessage
- the exception messagepCause
- the exception cause
-
ServletConfigException
public ServletConfigException(java.lang.Throwable pCause)
Creates aServletConfigException
with the cause.- Parameters:
pCause
- the exception cause
-
-