Package com.ibm.websphere.ejbcontainer
Class ApplicationNotStartedException
- java.lang.Object
-
- java.lang.Throwable
-
- java.lang.Exception
-
- java.lang.RuntimeException
-
- com.ibm.websphere.ejbcontainer.ApplicationNotStartedException
-
- All Implemented Interfaces:
java.io.Serializable
public class ApplicationNotStartedException extends java.lang.RuntimeException
The ApplicationNotStartedException is thrown by the Enterprise Java Bean (EJB) container when an attempt is made to access either an EJB instance or EJB home before the application is fully started and on a thread different from the one being used to start the application. The only EJB work that is allowed during application start processing is work being performed for startup Singleton beans or legacy IBM startup beans.Note: An ApplicationNotStartedException would not be returned directly to an application, but would be nested within the appropriate exception required by the EJB Specification for the type of EJB access being attempted. For example, an attempt to use a reference to an EJB local business interface would result in a javax.ejb.NoSuchEJBException.
- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description ApplicationNotStartedException()
Constructs a new ApplicationNotStartedException; no message.ApplicationNotStartedException(java.lang.String detailMessage)
Constructs a new ApplicationNotStartedException with the specified detail message.
-
-
-
Constructor Detail
-
ApplicationNotStartedException
public ApplicationNotStartedException()
Constructs a new ApplicationNotStartedException; no message.
-
ApplicationNotStartedException
public ApplicationNotStartedException(java.lang.String detailMessage)
Constructs a new ApplicationNotStartedException with the specified detail message.
-
-