ez-pro/core/bitrix/modules/main/lib/ObjectPropertyException.php
2025-11-13 19:04:05 +03:00

15 lines
345 B
PHP

<?php
namespace Bitrix\Main;
/**
* Exception is thrown when object property is not valid.
*/
class ObjectPropertyException extends ArgumentException
{
public function __construct($parameter = "", \Throwable $previous = null)
{
parent::__construct("Object property \"{$parameter}\" not found.", $parameter, $previous);
}
}