Class ComputationException
java.lang.Object
java.lang.Throwable
java.lang.Exception
org.episteme.core.distributed.ComputationException
- All Implemented Interfaces:
Serializable
Exception thrown when a distributed task computation fails.
- Since:
- 1.0
- Author:
- Silvere Martin-Michiellot, Gemini AI (Google DeepMind)
- See Also:
-
Constructor Summary
ConstructorsConstructorDescriptionComputationException(String message) Constructs a new ComputationException with the specified message.ComputationException(String message, Throwable cause) Constructs a new ComputationException with the specified message and cause. -
Method Summary
Methods inherited from class Throwable
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
-
Constructor Details
-
ComputationException
Constructs a new ComputationException with the specified message.- Parameters:
message- the error message
-
ComputationException
-