namespace ReC.Application.Common.Exceptions; public class RecActionException(long actionId, long? profileId, Exception innerException) : Exception($"Rec action failed. ActionId: {actionId}, ProfileId: {profileId}", innerException) { public long ActionId { get; } = actionId; public long? ProfileId { get; } = profileId; }