Summary
Adds an error handler to be executed if an exception occurs in the task.
Syntax
public static CakeTaskBuilder<TData> OnError<TData>(this CakeTaskBuilder<TData> builder, Action<Exception, ICakeContext, TData> errorHandler)
where TData : class
Type Parameters
Name |
Description |
TData |
The extra data to operate with inside the error handler. |
Parameters
Name |
Type |
Description |
builder |
CakeTaskBuilder<TData> |
The builder. |
errorHandler |
Action<Exception, ICakeContext, TData> |
The error handler. |
Return Value