Package modelarium.exceptions
Class EnvironmentNotFoundException
java.lang.Object
java.lang.Throwable
java.lang.Exception
java.lang.RuntimeException
modelarium.exceptions.EnvironmentNotFoundException
- All Implemented Interfaces:
Serializable
Exception for indicating that the model's environment could not be retrieved.
This exception is thrown when a request for the environment made through the co-ordinator fails or times out.
- See Also:
-
Constructor Summary
ConstructorsConstructorDescriptionEnvironmentNotFoundException(String message, Throwable cause) Constructs a new environment not found 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
-
EnvironmentNotFoundException
Constructs a new environment not found exception with the specified detail message and cause.- Parameters:
message- the detail message describing who requested the environmentcause- the underlying cause of the retrieval failure
-