23 lines
394 B
PHP
23 lines
394 B
PHP
<?php
|
|
|
|
/**
|
|
* @category RetailCRM
|
|
* @package RetailCRM\Exception
|
|
* @author RetailCRM <integration@retailcrm.ru>
|
|
* @license MIT
|
|
* @link http://retailcrm.ru
|
|
* @see http://retailcrm.ru/docs
|
|
*/
|
|
|
|
namespace RetailCrm\Exception;
|
|
|
|
/**
|
|
* Class InvalidJsonException
|
|
*
|
|
* @category RetailCRM
|
|
* @package RetailCRM\Exception
|
|
*/
|
|
class InvalidJsonException extends \DomainException
|
|
{
|
|
}
|