Bitrix-D7 23.9
 
Загрузка...
Поиск...
Не найдено
ObjectPropertyException.php
1<?php
2
3declare(strict_types=1);
4
6
8{
9 public function __construct(string $parameter = '', \Exception $previous = null)
10 {
11 parent::__construct("Object property \"{$parameter}\" not found.", $parameter, $previous);
12 }
13}
__construct(string $parameter='', \Exception $previous=null)