Bitrix-D7
23.9
Загрузка...
Поиск...
Не найдено
unresolveddependencyexception.php
1
<?php
2
3
namespace
Bitrix\Seo\BusinessSuite\Exception
;
4
5
6
class
UnresolvedDependencyException
extends
ConfigException
7
{
8
9
const
EXCEPTION_TYPE
=
ConfigException::EXCEPTION_TYPE_UNRESOLVED_DEPENDENCY
;
10
11
protected
$fieldCode
;
12
protected
$depends
;
13
25
public
function
__construct
(
26
$message =
""
,
27
$code = 0,
28
$file =
""
,
29
$line = 0,
30
\Exception $previous =
null
,
31
$fieldCode
=
''
,
32
$depends
= []
33
)
34
{
35
parent::__construct($message, $code, $file, $line, $previous);
36
$this->fieldCode =
$fieldCode
;
37
$this->depends =
$depends
;
38
}
39
43
public
function
getCustomData
(): array
44
{
45
return
parent::getCustomData() + [
46
'code'
=>
$this->fieldCode
,
47
'dependencies'
=>
$this->depends
48
];
49
}
50
}
Bitrix\Seo\BusinessSuite\Exception\ConfigException
Definition
configexception.php:8
Bitrix\Seo\BusinessSuite\Exception\ConfigException\EXCEPTION_TYPE_UNRESOLVED_DEPENDENCY
const EXCEPTION_TYPE_UNRESOLVED_DEPENDENCY
Definition
configexception.php:14
Bitrix\Seo\BusinessSuite\Exception\UnresolvedDependencyException
Definition
unresolveddependencyexception.php:7
Bitrix\Seo\BusinessSuite\Exception\UnresolvedDependencyException\$depends
$depends
Definition
unresolveddependencyexception.php:12
Bitrix\Seo\BusinessSuite\Exception\UnresolvedDependencyException\__construct
__construct( $message="", $code=0, $file="", $line=0, \Exception $previous=null, $fieldCode='', $depends=[])
Definition
unresolveddependencyexception.php:25
Bitrix\Seo\BusinessSuite\Exception\UnresolvedDependencyException\$fieldCode
$fieldCode
Definition
unresolveddependencyexception.php:11
Bitrix\Seo\BusinessSuite\Exception\UnresolvedDependencyException\getCustomData
getCustomData()
Definition
unresolveddependencyexception.php:43
Bitrix\Seo\BusinessSuite\Exception\UnresolvedDependencyException\EXCEPTION_TYPE
const EXCEPTION_TYPE
Definition
unresolveddependencyexception.php:9
Bitrix\Seo\BusinessSuite\Exception
Definition
configexception.php:3
modules
seo
lib
businesssuite
exception
unresolveddependencyexception.php
Создано системой
1.10.0