| Current Path : /var/www/homesaver/www/bitrix/modules/rest/lib/Exceptions/ |
| Current File : /var/www/homesaver/www/bitrix/modules/rest/lib/Exceptions/ObjectPropertyException.php |
<?php
declare(strict_types=1);
namespace Bitrix\Rest\Exceptions;
final class ObjectPropertyException extends ArgumentException
{
public function __construct(string $parameter = '', \Exception $previous = null)
{
parent::__construct("Object property \"{$parameter}\" not found.", $parameter, $previous);
}
}