Class ServiceUnavailableException
java.lang.Object
java.lang.Throwable
java.lang.Exception
java.lang.RuntimeException
org.opentcs.access.KernelRuntimeException
org.opentcs.components.kernel.services.ServiceUnavailableException
- All Implemented Interfaces:
Serializable
Thrown when a (remote) service is not available for processing a request.
- See Also:
-
Constructor Summary
ConstructorsConstructorDescriptionServiceUnavailableException
(String message) Creates a new ServiceUnavailableException with the given detail message.ServiceUnavailableException
(String message, Throwable cause) Creates a new ServiceUnavailableException with the given detail message and cause. -
Method Summary
Methods inherited from class java.lang.Throwable
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
-
Constructor Details
-
ServiceUnavailableException
Creates a new ServiceUnavailableException with the given detail message.- Parameters:
message
- The detail message.
-
ServiceUnavailableException
Creates a new ServiceUnavailableException with the given detail message and cause.- Parameters:
message
- The detail message.cause
- The cause.
-