diff --git a/src/ReC.Application/Common/Exceptions/RecActionException.cs b/src/ReC.Application/Common/Exceptions/RecActionException.cs new file mode 100644 index 0000000..c1fb659 --- /dev/null +++ b/src/ReC.Application/Common/Exceptions/RecActionException.cs @@ -0,0 +1,4 @@ +namespace ReC.Application.Common.Exceptions; + +public class RecActionException(long actionId, long? profileId, Exception innerException) + : Exception($"Rec action failed. ActionId: {actionId}, ProfileId: {profileId}", innerException); \ No newline at end of file