Newer
Older
Warehouse / src / Infrastructure / Authentication / External / Exceptions / ExternalAuthenticationSetupException.cs
@Derek Comartin Derek Comartin on 22 Aug 2023 309 bytes Init
namespace MyWarehouse.Infrastructure.Authentication.External.Exceptions;

public class ExternalAuthenticationSetupException : Exception
{
    public ExternalAuthenticationSetupException(string provider)
        : base($"External provider '{provider}' is not set up properly for authentication.")
    { }
}