类 NestedExceptionUtils
java.lang.Object
com.walker.infrastructure.core.NestedExceptionUtils
Helper class for implementing exception classes which are capable of
holding nested exceptions. Necessary because we can't share a base
class among different exception types.
Mainly for use within the framework.
- 从以下版本开始:
- 2.0
- 作者:
- Juergen Hoeller
- 另请参阅:
-
构造器概要
构造器 -
方法概要
修饰符和类型方法说明static StringbuildMessage(String message, Throwable cause) Build a message for the given base message and root cause.
-
构造器详细资料
-
NestedExceptionUtils
public NestedExceptionUtils()
-
-
方法详细资料
-
buildMessage
Build a message for the given base message and root cause.- 参数:
message- the base messagecause- the root cause- 返回:
- the full exception message
-