Location: PHPKode > projects > ProdigView > ProdigyView Example Code/mvc/phppro_mvc/controller/error404.php
<?php
Class error404Controller Extends baseController {
public function index()
{
$this->registry->template->blog_heading = 'This is the 404';
$this->registry->template->show('error404');
}
}
?>