mirror of
https://github.com/retailcrm/api-client-dotnet.git
synced 2024-11-22 04:46:02 +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)
|
|
{
|
|
}
|
|
}
|
|
}
|