for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace Ffcms\Core\Exception;
class ForbiddenException extends TemplateException
{
public function display()
$this->status = 403;
$this->title = '403 Forbidden';
$this->text = 'Access to this page is forbidden: %e%';
$this->tpl = 'forbidden';
return parent::display();
}