smartyexception.php (295B)
1 <?php 2 /** 3 * Smarty exception class 4 * 5 * @package Smarty 6 */ 7 class SmartyException extends Exception 8 { 9 public static $escape = false; 10 11 public function __toString() 12 { 13 return ' --> Smarty: ' . (self::$escape ? htmlentities($this->message) : $this->message) . ' <-- '; 14 } 15 }