p006/api/soft/smarty/3.1.39/libs/sysplugins/smartyexception.php

20 lines
353 B
PHP
Raw Normal View History

2022-11-29 22:06:03 +05:00
<?php
/**
* Smarty exception class
*
* @package Smarty
*/
class SmartyException extends Exception
{
public static $escape = false;
/**
* @return string
*/
public function __toString()
{
return ' --> Smarty: ' . (self::$escape ? htmlentities($this->message) : $this->message) . ' <-- ';
}
}