ai-ui/modules/site/controllers/DefaultController.php
2024-09-09 10:22:45 +02:00

15 lines
272 B
PHP

<?php
namespace app\modules\site\controllers;
use Throwable;
class DefaultController extends \Piko\Controller
{
public function errorAction(Throwable $exception)
{
return $this->render('error', [
'exception' => $exception
]);
}
}