aboutsummaryrefslogblamecommitdiffstats
path: root/vendor/smarty/smarty/libs/sysplugins/smartyexception.php
blob: 7f7b9aa435d19818b744e3c63f832000d95d7a8e (plain) (tree)
1
2
3
4
5
6
7
8
9
10
11










                                       


                     




                                                                                                           
<?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) . ' <-- ';
    }
}