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.
This commit is contained in:
7
src/ReC.Application/Common/Constants/ErrorAction.cs
Normal file
7
src/ReC.Application/Common/Constants/ErrorAction.cs
Normal file
@@ -0,0 +1,7 @@
|
||||
namespace ReC.Application.Common.Constants;
|
||||
|
||||
public enum ErrorAction
|
||||
{
|
||||
Stop = 0,
|
||||
Continue = 1,
|
||||
}
|
||||
Reference in New Issue
Block a user