123456789101112131415161718192021222324252627282930313233343536373839404142 |
- <?php
- class SmartyCompilerException extends SmartyException
- {
- public function __toString()
- {
- return ' --> Smarty Compiler: ' . $this->message . ' <-- ';
- }
-
- public $line = null;
-
- public $source = null;
-
- public $desc = null;
-
- public $template = null;
- }
|