Your IP : 216.73.216.86


Current Path : /var/www/homesaver/www/bitrix/modules/rest/lib/Exceptions/
Upload File :
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
		);
	}
}