Bitrix-D7
23.9
Загрузка...
Поиск...
Не найдено
exceptions.php
1
<?php
2
namespace
Bitrix\Scale
;
3
4
use \Bitrix\Main\SystemException;
5
9
class
ServerBxInfoException
extends
SystemException
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
30
class
NeedMoreUserInfoException
extends
SystemException
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
{
42
return
$this->actionParams
;
43
}
44
}
Bitrix\Main\SystemException
Definition
exception.php:8
Bitrix\Scale\NeedMoreUserInfoException
Definition
exceptions.php:31
Bitrix\Scale\NeedMoreUserInfoException\getActionParams
getActionParams()
Definition
exceptions.php:40
Bitrix\Scale\NeedMoreUserInfoException\__construct
__construct($message="", $actionParams=array(), \Exception $previous=null)
Definition
exceptions.php:34
Bitrix\Scale\NeedMoreUserInfoException\$actionParams
$actionParams
Definition
exceptions.php:32
Bitrix\Scale\ServerBxInfoException
Definition
exceptions.php:10
Bitrix\Scale\ServerBxInfoException\getHostname
getHostname()
Definition
exceptions.php:19
Bitrix\Scale\ServerBxInfoException\$hostname
$hostname
Definition
exceptions.php:11
Bitrix\Scale\ServerBxInfoException\__construct
__construct($message="", $hostname="", \Exception $previous=null)
Definition
exceptions.php:13
Bitrix\Scale
Definition
action.php:2
modules
scale
lib
exceptions.php
Создано системой
1.10.0