2014-11-06 02:44:52 +03:00
|
|
|
<?php
|
|
|
|
|
2016-04-10 00:46:08 +03:00
|
|
|
/**
|
2017-06-22 00:55:08 +03:00
|
|
|
* PHP version 5.4
|
2016-04-10 00:46:08 +03:00
|
|
|
*
|
|
|
|
* Class InvalidJsonException
|
|
|
|
*
|
|
|
|
* @category RetailCrm
|
|
|
|
* @package RetailCrm
|
|
|
|
* @author RetailCrm <integration@retailcrm.ru>
|
|
|
|
* @license https://opensource.org/licenses/MIT MIT License
|
2017-06-22 00:55:08 +03:00
|
|
|
* @link http://www.retailcrm.ru/docs/Developers/ApiVersion5
|
2016-04-10 00:46:08 +03:00
|
|
|
*/
|
|
|
|
|
2014-11-06 02:44:52 +03:00
|
|
|
namespace RetailCrm\Exception;
|
|
|
|
|
2016-03-09 02:31:29 +03:00
|
|
|
/**
|
2017-06-22 00:55:08 +03:00
|
|
|
* PHP version 5.4
|
2016-03-09 02:31:29 +03:00
|
|
|
*
|
|
|
|
* Class InvalidJsonException
|
|
|
|
*
|
|
|
|
* @category RetailCrm
|
|
|
|
* @package RetailCrm
|
|
|
|
* @author RetailCrm <integration@retailcrm.ru>
|
|
|
|
* @license https://opensource.org/licenses/MIT MIT License
|
2017-06-22 00:55:08 +03:00
|
|
|
* @link http://www.retailcrm.ru/docs/Developers/ApiVersion5
|
2016-03-09 02:31:29 +03:00
|
|
|
*/
|
2014-11-06 02:44:52 +03:00
|
|
|
class InvalidJsonException extends \DomainException
|
|
|
|
{
|
2014-11-10 03:12:50 +03:00
|
|
|
}
|