<?php
/**
* c_404.class.php
* Created by Komma Mediadesign.
* Author: mike
* Date: 3/19/13
*/
class Page_Not_Found extends Controller
{
public function __construct()
{
parent::__construct();
$this->Index();
}
/*
* Gets the dashboard of our homepage
*/
public function index()
{
$this->View->render('v_404');
}
}