1
0
mirror of synced 2025-03-19 22:44:03 +03:00
mg-bot-api-client-php/src/Exception/NotFoundException.php
2019-07-16 15:04:54 +03:00

29 lines
652 B
PHP

<?php
/**
* PHP version 7.1
*
* NotFoundException
*
* @package RetailCrm\Common\Exception
* @author retailCRM <integration@retailcrm.ru>
* @license https://opensource.org/licenses/MIT MIT License
* @link http://help.retailcrm.pro/docs/Developers
*/
namespace RetailCrm\Common\Exception;
use DomainException;
use Throwable;
/**
* Class NotFoundException
*
* @package RetailCrm\Common\Exception
* @author retailCRM <integration@retailcrm.ru>
* @license https://opensource.org/licenses/MIT MIT License
* @link http://help.retailcrm.pro/docs/Developers
*/
class NotFoundException extends DomainException implements Throwable
{
}