Package modelarium.exceptions
Class CoordinatorErrorException
java.lang.Object
java.lang.Throwable
java.lang.Exception
java.lang.RuntimeException
modelarium.exceptions.CoordinatorErrorException
- All Implemented Interfaces:
Serializable
Exception for indicating that the co-ordinator reported an error while handling a request.
This exception is thrown when a worker thread receives an error response from the co-ordinator, with the co-ordinator's original failure attached as the cause.
- See Also:
-
Constructor Summary
ConstructorsConstructorDescriptionCoordinatorErrorException(String message, Throwable cause) Constructs a new coordinator error exception with the specified 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
-
CoordinatorErrorException
Constructs a new coordinator error exception with the specified detail message and cause.- Parameters:
message- the detail message describing the request the co-ordinator failed to handlecause- the failure reported by the co-ordinator
-