Package com.hazelcast.jet
Class JobAlreadyExistsException
java.lang.Object
java.lang.Throwable
java.lang.Exception
java.lang.RuntimeException
com.hazelcast.core.HazelcastException
com.hazelcast.jet.JetException
com.hazelcast.jet.JobAlreadyExistsException
- All Implemented Interfaces:
Serializable
Thrown when a named job is submitted while there is an active job
with the same name. Job is active if it is running, suspended or
waiting to be run, until it completes or fails.
- Since:
- Jet 3.0
- See Also:
-
Constructor Summary
ConstructorDescriptionCreates the exceptionJobAlreadyExistsException
(String message) Creates the exception with a message.JobAlreadyExistsException
(String message, Throwable cause) Creates the exception with a message and a 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
-
JobAlreadyExistsException
public JobAlreadyExistsException()Creates the exception -
JobAlreadyExistsException
Creates the exception with a message. -
JobAlreadyExistsException
Creates the exception with a message and a cause.
-