mirror of
https://github.com/retailcrm/api-client-dotnet.git
synced 2024-11-25 14:26:03 +03:00
22 lines
377 B
C#
22 lines
377 B
C#
using System;
|
|
|
|
namespace RetailCrm
|
|
{
|
|
public class ApiException : Exception
|
|
{
|
|
public ApiException()
|
|
{
|
|
}
|
|
|
|
public ApiException(string message)
|
|
: base(message)
|
|
{
|
|
}
|
|
|
|
public ApiException(string message, Exception inner)
|
|
: base(message, inner)
|
|
{
|
|
}
|
|
}
|
|
}
|