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