ILIAS
release_5-3 Revision v5.3.23-19-g915713cf615
◀ ilDoc Overview
NestingException.php
Go to the documentation of this file.
1
<?php
2
3
4
namespace
enshrined\svgSanitize\Exceptions
;
5
6
7
use
Exception
;
8
9
class
NestingException
extends
\Exception
10
{
14
protected
$element
;
15
24
public
function
__construct
(
$message
=
""
,
$code
= 0,
Exception
$previous = null, \
DOMElement
$element
= null)
25
{
26
$this->element =
$element
;
27
parent::__construct(
$message
,
$code
, $previous);
28
}
29
35
public
function
getElement
()
36
{
37
return
$this->element
;
38
}
39
}
$code
$code
Definition:
example_050.php:99
enshrined\svgSanitize\Exceptions\NestingException\$element
$element
Definition:
NestingException.php:14
DOMElement
$message
catch(Exception $e) $message
Definition:
saml2-logout.php:34
enshrined\svgSanitize\Exceptions
Definition:
NestingException.php:4
enshrined\svgSanitize\Exceptions\NestingException
Definition:
NestingException.php:9
enshrined\svgSanitize\Exceptions\NestingException\__construct
__construct($message="", $code=0, Exception $previous=null, \DOMElement $element=null)
NestingException constructor.
Definition:
NestingException.php:24
Exception
enshrined\svgSanitize\Exceptions\NestingException\getElement
getElement()
Get the element that caused the exception.
Definition:
NestingException.php:35
libs
composer
vendor
enshrined
svg-sanitize
src
Exceptions
NestingException.php
Generated on Sat Jan 18 2025 19:01:01 for ILIAS by
1.8.13 (using
Doxyfile
)