diff --git a/library/smarty/libs/sysplugins/smartyexception.php b/library/smarty/libs/sysplugins/smartyexception.php deleted file mode 100644 --- a/library/smarty/libs/sysplugins/smartyexception.php +++ /dev/null @@ -1,14 +0,0 @@ -<?php - -/** - * Smarty exception class - * - * @package Smarty - */ -class SmartyException extends Exception { - public static $escape = false; - - public function __toString() { - return ' --> Smarty: ' . (self::$escape ? htmlentities($this->message) : $this->message) . ' <-- '; - } -}