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

public class ExternalAuthenticationPreventedException : Exception
{
    public ExternalAuthenticationPreventedException(Exception innerException)
        : base("Could not successfully execute authentication check with external provider. Maybe their services are not accessible currently.",
              innerException)
    { }
}