- zoesch.de - blitzkiste.net - gruene-hassberge (norbert.zoesch.de) 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude Sonnet 4.5 <noreply@anthropic.com>
16 lines
295 B
PHP
16 lines
295 B
PHP
<?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) . ' <-- ';
|
|
}
|
|
}
|