|
|||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
java.lang.Object 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! While this might be fixed in later Servlet API variants (which even differ per vendor for the same API version), it is not reliably available on Servlet 2.4 (the minimum version required by Spring 3.x), which is why we need to do it ourselves.
The similarity between this class and the NestedChecked/RuntimeException class is unavoidable, as this class needs to derive from ServletException.
getMessage()
,
#printStackTrace
,
NestedCheckedException
,
NestedRuntimeException
Field Summary | |
---|---|
private static long |
serialVersionUID
Use serialVersionUID from Spring 1.2 for interoperability |
Constructor Summary | |
---|---|
NestedServletException(java.lang.String msg)
Construct a NestedServletException with the specified detail message. |
|
NestedServletException(java.lang.String msg,
java.lang.Throwable cause)
Construct a NestedServletException with the specified detail message
and nested exception. |
Method Summary | |
---|---|
java.lang.String |
getMessage()
Return the detail message, including the message from the nested exception if there is one. |
Methods inherited from class java.lang.Object |
---|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
Field Detail |
---|
private static final long serialVersionUID
Constructor Detail |
---|
public NestedServletException(java.lang.String msg)
NestedServletException
with the specified detail message.
msg
- the detail messagepublic NestedServletException(java.lang.String msg, java.lang.Throwable cause)
NestedServletException
with the specified detail message
and nested exception.
msg
- the detail messagecause
- the nested exceptionMethod Detail |
---|
public java.lang.String getMessage()
|
|||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |