diff --git a/src/ReC.Application/Common/Exceptions/RecActionException.cs b/src/ReC.Application/Common/Exceptions/RecActionException.cs index c1fb659..b42aa65 100644 --- a/src/ReC.Application/Common/Exceptions/RecActionException.cs +++ b/src/ReC.Application/Common/Exceptions/RecActionException.cs @@ -1,4 +1,9 @@ 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 + : Exception($"Rec action failed. ActionId: {actionId}, ProfileId: {profileId}", innerException) +{ + public long ActionId { get; } = actionId; + + public long? ProfileId { get; } = profileId; +} \ No newline at end of file