PluginProbe ʕ •ᴥ•ʔ
پارسی دیت – Parsi Date / trunk
پارسی دیت – Parsi Date vtrunk
6.2.1 6.2 6.1 5.1.6 5.1.7 5.1.8 5.1.8.2 6.0 trunk 1.0 1.1 1.2 1.3 1.3.1 1.3.2 1.3.3 1.3.4 1.3.5 2.0.0-alpha 2.1 2.1.1 2.1.2 2.1.3 2.1.5 2.1.6 2.1.7 2.2.0 2.2.1 2.2.2 2.2.3 2.3.0.1 2.3.0.2 2.3.1 2.3.2 2.3.3 2.3.4 3.0.1 3.0.2 3.0.3 4.0.0 4.0.1 4.0.2 5.1.0 5.1.1 5.1.2 5.1.3 5.1.4 5.1.5
wp-parsidate / vendor / enshrined / svg-sanitize / src / Exceptions / NestingException.php
wp-parsidate / vendor / enshrined / svg-sanitize / src / Exceptions Last commit date
NestingException.php 1 month ago
NestingException.php
37 lines
1 <?php
2 namespace enshrined\svgSanitize\Exceptions;
3
4 use Exception;
5
6 class NestingException extends \Exception
7 {
8 /**
9 * @var \DOMElement
10 */
11 protected $element;
12
13 /**
14 * NestingException constructor.
15 *
16 * @param string $message
17 * @param int $code
18 * @param Exception|null $previous
19 * @param \DOMElement|null $element
20 */
21 public function __construct($message = "", $code = 0, ?Exception $previous = null, ?\DOMElement $element = null)
22 {
23 $this->element = $element;
24 parent::__construct($message, $code, $previous);
25 }
26
27 /**
28 * Get the element that caused the exception.
29 *
30 * @return \DOMElement
31 */
32 public function getElement()
33 {
34 return $this->element;
35 }
36 }
37