Class CannotDeleteNonParentTaskExecutionException
java.lang.Object
java.lang.Throwable
java.lang.Exception
java.lang.RuntimeException
org.springframework.cloud.dataflow.server.repository.CannotDeleteNonParentTaskExecutionException
- All Implemented Interfaces:
Serializable
Exception that allows to indicate that 1 or more
TaskExecution
s
could not be deleted.- Author:
- Gunnar Hillert
- See Also:
-
Constructor Summary
ConstructorDescriptionCannotDeleteNonParentTaskExecutionException
(Long taskExecutionId) Create a new exception for 1TaskExecution
id that could not be deleted.CannotDeleteNonParentTaskExecutionException
(Set<Long> taskExecutionIds) Create a new exception for multipleTaskExecution
ids that could not be deleted. -
Method Summary
Methods inherited from class java.lang.Throwable
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
-
Constructor Details
-
CannotDeleteNonParentTaskExecutionException
Create a new exception for 1TaskExecution
id that could not be deleted.- Parameters:
taskExecutionId
- the id of theTaskExecution
that could not be found
-
CannotDeleteNonParentTaskExecutionException
Create a new exception for multipleTaskExecution
ids that could not be deleted.- Parameters:
taskExecutionIds
- the ids of theTaskExecution
that could not be found
-