mirror of
https://github.com/Piwigo/Piwigo.git
synced 2026-04-30 18:42:43 +02:00
17 lines
217 B
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 . ' <-- ';
|
|
}
|
|
}
|