Package org.springframework.context
Class ApplicationContextException
java.lang.Object
java.lang.Throwable
java.lang.Exception
java.lang.RuntimeException
org.springframework.core.NestedRuntimeException
org.springframework.beans.BeansException
org.springframework.beans.FatalBeanException
org.springframework.context.ApplicationContextException
- All Implemented Interfaces:
- Serializable
Exception thrown during application context initialization.
- Author:
- Rod Johnson
- See Also:
- 
Constructor SummaryConstructorsConstructorDescriptionCreate 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.
- 
Method SummaryMethods inherited from class org.springframework.core.NestedRuntimeExceptioncontains, getMessage, getMostSpecificCause, getRootCauseMethods inherited from class java.lang.ThrowableaddSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
- 
Constructor Details- 
ApplicationContextExceptionCreate a newApplicationContextExceptionwith the specified detail message and no root cause.- Parameters:
- msg- the detail message
 
- 
ApplicationContextExceptionCreate a newApplicationContextExceptionwith the specified detail message and the given root cause.- Parameters:
- msg- the detail message
- cause- the root cause
 
 
-