org.springframework.beans.factory.access
public class: BootstrapException [javadoc |
source]
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.beans.factory.access.BootstrapException
All Implemented Interfaces:
Serializable
Exception thrown if a bean factory could not be loaded by a bootstrap class.
- author:
Rod - Johnson
- since:
02.12.2002 -
| Constructor: |
public BootstrapException(String msg) {
super(msg);
}
Create a new BootstrapException with the specified message. Parameters:
msg - the detail message
|
public BootstrapException(String msg,
Throwable cause) {
super(msg, cause);
}
Create a new BootstrapException with the specified message
and root cause. Parameters:
msg - the detail message
cause - the root cause
|
| Methods from java.lang.Throwable: |
|---|
|
fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString |