[ Index ]

PHP Cross Reference of Joomla 4.2.2 documentation

title

Body

[close]

/libraries/vendor/enshrined/svg-sanitize/src/Exceptions/ -> NestingException.php (source)

   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  }


Generated: Wed Sep 7 05:41:13 2022 Chilli.vc Blog - For Webmaster,Blog-Writer,System Admin and Domainer