mirror of
https://gitlab.com/fabinfra/fabaccess/borepin_tmp.git
synced 2025-03-12 23:01:49 +01:00
23 lines
397 B
C#
23 lines
397 B
C#
|
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)
|
|||
|
{
|
|||
|
|
|||
|
}
|
|||
|
}
|
|||
|
}
|