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