| Current Path : /var/www/homesaver/www/bitrix/modules/rest/lib/Exceptions/ |
| Current File : /var/www/homesaver/www/bitrix/modules/rest/lib/Exceptions/ObjectNotFoundException.php |
<?php
declare(strict_types=1);
namespace Bitrix\Rest\Exceptions;
use Bitrix\Rest\RestException;
final class ObjectNotFoundException extends RestException
{
public function __construct(string $message = '', \Exception $previous = null)
{
parent::__construct($message, 510,
\CRestServer::STATUS_WRONG_REQUEST,
$previous
);
}
}