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:
java.io.Serializable
public class JobAlreadyExistsException extends JetException
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:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description JobAlreadyExistsException()
Creates the exceptionJobAlreadyExistsException(java.lang.String message)
Creates the exception with a message.JobAlreadyExistsException(java.lang.String message, java.lang.Throwable cause)
Creates the exception with a message and a cause.
-
-
-
Constructor Detail
-
JobAlreadyExistsException
public JobAlreadyExistsException()
Creates the exception
-
JobAlreadyExistsException
public JobAlreadyExistsException(java.lang.String message)
Creates the exception with a message.
-
JobAlreadyExistsException
public JobAlreadyExistsException(java.lang.String message, java.lang.Throwable cause)
Creates the exception with a message and a cause.
-
-