15 lines
272 B
PHP
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
|
|
]);
|
|
}
|
|
}
|