blob: 0f75f56858d682769a290bd4de3074a17b1428f8 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
<?php
namespace Smarty;
/**
* Smarty exception class
*/
class Exception extends \Exception {
/**
* @return string
*/
public function __toString() {
return ' --> Smarty: ' . $this->message . ' <-- ';
}
}
|