Class FatalJobExecutionException
java.lang.Object
java.lang.Throwable
java.lang.Exception
java.lang.RuntimeException
com.netflix.genie.agent.execution.statemachine.FatalJobExecutionException
- All Implemented Interfaces:
Serializable
Fatal exception that should stop execution early. For example, claiming a job that is not in claimable state.
- Since:
- 4.0.0
- See Also:
-
Constructor Summary
ConstructorsConstructorDescriptionFatalJobExecutionException
(States sourceState, String message) Constructor without cause.FatalJobExecutionException
(States sourceState, String message, Throwable cause) Constructor. -
Method Summary
Methods inherited from class java.lang.Throwable
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
-
Constructor Details
-
FatalJobExecutionException
Constructor without cause.- Parameters:
sourceState
- state in which error was encounteredmessage
- message
-
FatalJobExecutionException
Constructor.- Parameters:
sourceState
- state in which error was encounteredmessage
- messagecause
- cause
-