package saker.build.task.exception
Exception can be thrown by tasks when they detect that the execution was cancelled by user request.
If tasks throw this exception, their execution will be considered as failed. Instead, they are recommended to handle
cancellation gracefully, and recover if possible. They can use TaskContext.abortExecution(
public | TaskExecutionCancelledException( Creates a new exception for the given task identifier. |
From: TaskExecutionException |
From: Throwable |
From: Object |
Documentation included from: TaskExecutionException
Creates a new exception for the given task identifier.
taskIdentifierThe related task identifier.