crm-rush/api/soft/smarty/5.4.1/src/Exception.php

17 lines
217 B
PHP

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