Package com.hazelcast.jet.pipeline.test
Class AssertionCompletedException
- java.lang.Object
-
- java.lang.Throwable
-
- java.lang.Exception
-
- java.lang.RuntimeException
-
- com.hazelcast.jet.pipeline.test.AssertionCompletedException
-
- All Implemented Interfaces:
java.io.Serializable
@EvolvingApi public final class AssertionCompletedException extends java.lang.RuntimeException
An exception which indicates that an assertion passed successfully. It is used to terminate the streaming job. If caught from theJob.join()
method, it can be ignored.- Since:
- Jet 3.2
- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description AssertionCompletedException()
Creates the exceptionAssertionCompletedException(java.lang.String message)
Creates the exception with the given messageAssertionCompletedException(java.lang.String message, java.lang.Throwable cause)
Creates the exception with the given message and cause
-
-
-
Constructor Detail
-
AssertionCompletedException
public AssertionCompletedException()
Creates the exception
-
AssertionCompletedException
public AssertionCompletedException(java.lang.String message)
Creates the exception with the given message
-
AssertionCompletedException
public AssertionCompletedException(java.lang.String message, java.lang.Throwable cause)
Creates the exception with the given message and cause
-
-