LANCommander/LANCommander.Server.Services/Exceptions/AddRoleException.cs

13 lines
335 B
C#
Raw Normal View History

2025-01-22 20:54:41 -06:00
using Microsoft.AspNetCore.Identity;
namespace LANCommander.Server.Services.Exceptions;
public class AddRoleException : Exception
{
public IdentityResult IdentityResult { get; set; }
public AddRoleException(IdentityResult identityResult, string message) : base(message)
{
IdentityResult = identityResult;
}
}