namespace ECMJobRunner.Application.Common.Constants
{
///
/// Defines actions to take when an error occurs during job execution
///
public enum ErrorAction
{
///
/// Ignore the error and continue execution
///
Ignore,
///
/// Stop execution and throw an exception
///
Stop,
}
}