mirror of
https://gitlab.com/fabinfra/fabaccess/fabaccess-api-cs.git
synced 2025-03-12 06:41:51 +01:00
27 lines
529 B
C#
27 lines
529 B
C#
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)
|
|
{
|
|
|
|
}
|
|
}
|
|
}
|