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/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);
	}
}