LANCommander/LANCommander.Server.Services/Exceptions/UserRegistrationException.cs

13 lines
626 B
C#
Raw Permalink Normal View History

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