Bitrix-D7 23.9
 
Загрузка...
Поиск...
Не найдено
timeisoverexception.php
1<?php
3
4use \Bitrix\Main\SystemException;
5
13{
14 protected $endPosition;
15
21 public function __construct($message = "", $endPosition = "", \Exception $previous = null)
22 {
23 parent::__construct($message, 0, '', 0, $previous);
24 $this->endPosition = $endPosition;
25 }
26
31 public function getEndPosition()
32 {
33 return $this->endPosition;
34 }
35}
__construct($message="", $endPosition="", \Exception $previous=null)