borepin/FabAccessAPI/Exceptions/APIIncompatibleException.cs

23 lines
397 B
C#
Raw Permalink Normal View History

2022-05-10 13:35:23 +02:00
using System;
namespace FabAccessAPI.Exceptions
{
public class APIIncompatibleException : Exception
{
public APIIncompatibleException()
{
}
public APIIncompatibleException(string message) : base(message)
{
}
public APIIncompatibleException(string message, Exception inner) : base(message, inner)
{
}
}
}