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