Class TaskExecutionMissingExternalIdException
java.lang.Object
java.lang.Throwable
java.lang.Exception
java.lang.RuntimeException
org.springframework.cloud.dataflow.server.repository.TaskExecutionMissingExternalIdException
- All Implemented Interfaces:
Serializable
This exception is used when
TaskExecution
s do not have external
execution ids and they are required by Spring Cloud Data Flow.- Author:
- Glenn Renfro
- See Also:
-
Constructor Summary
ConstructorsConstructorDescriptionCreate a new exception that can handle a singleTaskExecution
id.Create a new exception that handles multipleTaskExecution
ids. -
Method Summary
Methods inherited from class java.lang.Throwable
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
-
Constructor Details
-
TaskExecutionMissingExternalIdException
public TaskExecutionMissingExternalIdException(long id) Create a new exception that can handle a singleTaskExecution
id.- Parameters:
id
- the id of theTaskExecution
that is missing external execution id.
-
TaskExecutionMissingExternalIdException
Create a new exception that handles multipleTaskExecution
ids.- Parameters:
ids
- the ids of theTaskExecution
that are missing external execution ids.
-