mirror of
https://gitlab.com/fabinfra/fabaccess/fabaccess-api-cs.git
synced 2025-03-12 23:01:46 +01:00
23 lines
414 B
C#
23 lines
414 B
C#
|
using System;
|
|||
|
|
|||
|
namespace FabAccessAPI.Exceptions.SASL
|
|||
|
{
|
|||
|
public class InvalidCredentialsException : Exception
|
|||
|
{
|
|||
|
public InvalidCredentialsException()
|
|||
|
{
|
|||
|
|
|||
|
}
|
|||
|
|
|||
|
public InvalidCredentialsException(string message) : base(message)
|
|||
|
{
|
|||
|
|
|||
|
}
|
|||
|
|
|||
|
public InvalidCredentialsException(string message, Exception inner) : base(message, inner)
|
|||
|
{
|
|||
|
|
|||
|
}
|
|||
|
}
|
|||
|
}
|