/var/www/vhosts/ihelp.ro/httpdocs/vendor/twig/twig/src/Sandbox
Edit: /var/www/vhosts/ihelp.ro/httpdocs/vendor/twig/twig/src/Sandbox/SecurityNotAllowedPropertyError.php (884B)
*/
final class SecurityNotAllowedPropertyError extends SecurityError
{
private $className;
private $propertyName;
public function __construct(string $message, string $className, string $propertyName)
{
parent::__construct($message);
$this->className = $className;
$this->propertyName = $propertyName;
}
public function getClassName(): string
{
return $this->className;
}
public function getPropertyName()
{
return $this->propertyName;
}
}