类 ApplicationContextException
java.lang.Object
java.lang.Throwable
java.lang.Exception
java.lang.RuntimeException
cn.taketoday.core.NestedRuntimeException
cn.taketoday.beans.BeansException
cn.taketoday.beans.FatalBeanException
cn.taketoday.context.ApplicationContextException
- 所有已实现的接口:
Serializable
Exception thrown during application context initialization.
- 从以下版本开始:
- 2018-10-05 21:33
- 作者:
- Rod Johnson, Harry Yang
- 另请参阅:
-
构造器概要
构造器构造器说明Create a newApplicationContextExceptionwith the specified detail message and no root cause.ApplicationContextException(String msg, Throwable cause) Create a newApplicationContextExceptionwith the specified detail message and the given root cause. -
方法概要
从类继承的方法 cn.taketoday.beans.BeansException
getDesc从类继承的方法 cn.taketoday.core.NestedRuntimeException
contains, getMostSpecificCause, getNestedMessage, getRootCause
-
构造器详细资料
-
ApplicationContextException
Create a newApplicationContextExceptionwith the specified detail message and no root cause.- 参数:
msg- the detail message
-
ApplicationContextException
Create a newApplicationContextExceptionwith the specified detail message and the given root cause.- 参数:
msg- the detail messagecause- the root cause
-