Bitrix-D7 23.9
 
Загрузка...
Поиск...
Не найдено
domexception.php
1<?php
2namespace Bitrix\Main\Web\DOM;
3
5{
6 const INDEX_SIZE_ERR = 1;
13 const NOT_FOUND_ERR = 8;
16 // Introduced in DOM Level 2:
18 // Introduced in DOM Level 2:
19 const SYNTAX_ERR = 12;
20 // Introduced in DOM Level 2:
22 // Introduced in DOM Level 2:
23 const NAMESPACE_ERR = 14;
24 // Introduced in DOM Level 2:
26 // Introduced in DOM Level 3:
27 const VALIDATION_ERR = 16;
28
29 public function __construct($message = "", $code = 0, \Exception $previous = null)
30 {
31 parent::__construct($message, $code, '', '', $previous);
32 }
33}
__construct($message="", $code=0, \Exception $previous=null)