Package com.yahoo.jdisc.application
Class ApplicationNotReadyException
java.lang.Object
java.lang.Throwable
java.lang.Exception
java.lang.RuntimeException
com.yahoo.jdisc.application.ApplicationNotReadyException
- All Implemented Interfaces:
Serializable
This exception is used to signal that no
Application
has been configured. An instance of this class will be
thrown by the ContainerActivator.activateContainer(ContainerBuilder)
method if it is called before the call
to Application.start()
or after the call to Application.stop()
.- Author:
- Simon Thoresen Hult
- See Also:
-
Constructor Summary
ConstructorDescriptionConstructs a new instance of this class with a detail message. -
Method Summary
Methods inherited from class java.lang.Throwable
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
-
Constructor Details
-
ApplicationNotReadyException
public ApplicationNotReadyException()Constructs a new instance of this class with a detail message.
-