|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
java.lang.Object java.lang.Throwable java.lang.Exception javax.servlet.ServletException org.springframework.web.util.NestedServletException
public class NestedServletException
Subclass of ServletException that properly handles a root cause in terms of message and stacktrace, just like NestedChecked/RuntimeException does. Note that the plain ServletException doesn't expose its root cause at all, neither in the exception message nor in printed stack traces!
The similarity between this class and the NestedChecked/RuntimeException class is unavoidable, as this class needs to derive from ServletException and cannot derive from NestedCheckedException.
getMessage()
,
printStackTrace(java.io.PrintStream)
,
NestedCheckedException
,
NestedRuntimeException
,
Serialized FormConstructor Summary | |
---|---|
NestedServletException(String msg)
Construct a NestedServletException with the specified detail message. |
|
NestedServletException(String msg,
Throwable ex)
Construct a NestedServletException with the specified detail message
and nested exception. |
Method Summary | |
---|---|
String |
getMessage()
Return the detail message, including the message from the nested exception if there is one. |
void |
printStackTrace(PrintStream ps)
Print the composite message and the embedded stack trace to the specified stream. |
void |
printStackTrace(PrintWriter pw)
Print the composite message and the embedded stack trace to the specified print writer. |
Methods inherited from class javax.servlet.ServletException |
---|
getRootCause |
Methods inherited from class java.lang.Throwable |
---|
fillInStackTrace, getCause, getLocalizedMessage, getStackTrace, initCause, printStackTrace, setStackTrace, toString |
Methods inherited from class java.lang.Object |
---|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait |
Constructor Detail |
---|
public NestedServletException(String msg)
NestedServletException
with the specified detail message.
msg
- the detail messagepublic NestedServletException(String msg, Throwable ex)
NestedServletException
with the specified detail message
and nested exception.
msg
- the detail messageex
- the nested exceptionMethod Detail |
---|
public String getMessage()
getMessage
in class Throwable
public void printStackTrace(PrintStream ps)
printStackTrace
in class Throwable
ps
- the print streampublic void printStackTrace(PrintWriter pw)
printStackTrace
in class Throwable
pw
- the print writer
|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |