borepin/FabAccessAPI/Exceptions/UnsupportedMechanismException.cs

23 lines
417 B
C#
Raw Permalink Normal View History

2022-03-12 22:52:28 +01:00
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)
{
}
}
}