BeCastWebEngine/core/template/src/Exception.php
2025-06-20 19:10:23 +02:00

16 lines
217 B
PHP

<?php
namespace Smarty;
/**
* Smarty exception class
*/
class Exception extends \Exception {
/**
* @return string
*/
public function __toString() {
return ' --> Smarty: ' . $this->message . ' <-- ';
}
}