api.fabaccess-api-cs/FabAccessAPI/Exceptions/AuthenticationException.cs

27 lines
529 B
C#
Raw Permalink Normal View History

2024-03-11 22:38:56 +01:00
using System;
namespace FabAccessAPI.Exceptions
{
/// <summary>
/// Authenticating to a server has failed
/// InnerException will provide more information
/// </summary>
public class AuthenticationException : Exception
{
public AuthenticationException()
{
}
public AuthenticationException(string message) : base(message)
{
}
public AuthenticationException(string message, Exception inner) : base(message, inner)
{
}
}
}