From 26f2da1313900820bb92f2ce663b570f885667df Mon Sep 17 00:00:00 2001 From: TekH Date: Fri, 12 Dec 2025 12:55:57 +0100 Subject: [PATCH] Add ErrorAction enum for error handling actions Introduced the ErrorAction enum in the ReC.Application.Common.Constants namespace with Stop and Continue values to standardize error response actions across the application. --- src/ReC.Application/Common/Constants/ErrorAction.cs | 7 +++++++ 1 file changed, 7 insertions(+) create mode 100644 src/ReC.Application/Common/Constants/ErrorAction.cs diff --git a/src/ReC.Application/Common/Constants/ErrorAction.cs b/src/ReC.Application/Common/Constants/ErrorAction.cs new file mode 100644 index 0000000..3c88f86 --- /dev/null +++ b/src/ReC.Application/Common/Constants/ErrorAction.cs @@ -0,0 +1,7 @@ +namespace ReC.Application.Common.Constants; + +public enum ErrorAction +{ + Stop = 0, + Continue = 1, +} \ No newline at end of file