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