类 NestedServletException
- java.lang.Object
- java.lang.Throwable
- java.lang.Exception
- javax.servlet.ServletException
- org.springframework.web.util.NestedServletException
- 所有已实现的接口:
Serializable
public class NestedServletException extends ServletException
Subclass ofServletException
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.
- 从以下版本开始:
- 1.2.5
- 作者:
- Juergen Hoeller
- 另请参阅:
getMessage()
,Throwable.printStackTrace()
,NestedCheckedException
,NestedRuntimeException
, 序列化表格
构造器概要
构造器 构造器 说明 NestedServletException(String msg)
Construct aNestedServletException
with the specified detail message.NestedServletException(String msg, Throwable cause)
Construct aNestedServletException
with the specified detail message and nested exception.
方法概要
所有方法 实例方法 具体方法 修饰符和类型 方法 说明 String
getMessage()
Return the detail message, including the message from the nested exception if there is one.从类继承的方法 javax.servlet.ServletException
getRootCause
构造器详细资料
NestedServletException
public NestedServletException(String msg)
Construct aNestedServletException
with the specified detail message.- 参数:
msg
- the detail message
NestedServletException
public NestedServletException(@Nullable String msg, @Nullable Throwable cause)
Construct aNestedServletException
with the specified detail message and nested exception.- 参数:
msg
- the detail messagecause
- the nested exception
方法详细资料
getMessage
@Nullable public String getMessage()
Return the detail message, including the message from the nested exception if there is one.- 覆盖:
getMessage
在类中Throwable