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
TaskExecutions
could not be deleted.- Author:
- Gunnar Hillert
- See Also:
-
Constructor Summary
ConstructorsConstructorDescriptionCannotDeleteNonParentTaskExecutionException(Long taskExecutionId) Create a new exception for 1TaskExecutionid that could not be deleted.CannotDeleteNonParentTaskExecutionException(Set<Long> taskExecutionIds) Create a new exception for multipleTaskExecutionids 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 1TaskExecutionid that could not be deleted.- Parameters:
taskExecutionId- the id of theTaskExecutionthat could not be found
-
CannotDeleteNonParentTaskExecutionException
Create a new exception for multipleTaskExecutionids that could not be deleted.- Parameters:
taskExecutionIds- the ids of theTaskExecutionthat could not be found
-