Bitrix-D7 23.9
 
Загрузка...
Поиск...
Не найдено
exceptions.php
1<?php
2namespace Bitrix\Scale;
3
4use \Bitrix\Main\SystemException;
5
10{
11 protected $hostname;
12
13 public function __construct($message = "", $hostname = "", \Exception $previous = null)
14 {
15 parent::__construct($message, 0, '', 0, $previous);
16 $this->hostname= $hostname;
17 }
18
19 public function getHostname()
20 {
21 return $this->hostname;
22 }
23}
24
31{
32 protected $actionParams;
33
34 public function __construct($message = "", $actionParams = array(), \Exception $previous = null)
35 {
36 parent::__construct($message, 0, '', 0, $previous);
37 $this->actionParams= $actionParams;
38 }
39
40 public function getActionParams()
41 {
43 }
44}
__construct($message="", $actionParams=array(), \Exception $previous=null)
__construct($message="", $hostname="", \Exception $previous=null)