Package com.yahoo.jdisc.service
Class ContainerNotReadyException
java.lang.Object
java.lang.Throwable
java.lang.Exception
java.lang.RuntimeException
com.yahoo.jdisc.service.ContainerNotReadyException
- All Implemented Interfaces:
Serializable
This exception is used to signal that no
Container
is ready to serve Request
s. An instance of this
class will be thrown by the CurrentContainer.newReference(URI)
method if it is called before a Container has
been activated, or after a null argument has been passed to ContainerActivator.activateContainer(ContainerBuilder)
.- 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
-
ContainerNotReadyException
public ContainerNotReadyException()Constructs a new instance of this class with a detail message.
-