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