composer package updates
[openemr.git] / vendor / twig / twig / lib / Twig / Sandbox / SecurityNotAllowedFilterError.php
blob0ba332762d4a88b497bf025c3f044a2eef1feb9c
1 <?php
3 /*
4 * This file is part of Twig.
6 * (c) Fabien Potencier
8 * For the full copyright and license information, please view the LICENSE
9 * file that was distributed with this source code.
12 /**
13 * Exception thrown when a not allowed filter is used in a template.
15 * @author Martin HasoĊˆ <martin.hason@gmail.com>
17 class Twig_Sandbox_SecurityNotAllowedFilterError extends Twig_Sandbox_SecurityError
19 private $filterName;
21 public function __construct($message, $functionName, $lineno = -1, $filename = null, Exception $previous = null)
23 parent::__construct($message, $lineno, $filename, $previous);
24 $this->filterName = $functionName;
27 public function getFilterName()
29 return $this->filterName;
33 class_alias('Twig_Sandbox_SecurityNotAllowedFilterError', 'Twig\Sandbox\SecurityNotAllowedFilterError', false);