HOME


sh-3ll 1.0
DIR:/proc/thread-self/cwd/application/controllers/
Upload File :
Current File : //proc/thread-self/cwd/application/controllers/Error404.php
<?php
defined('BASEPATH') OR exit('No direct script access allowed');

class Error404 extends CI_Controller {

	public function __construct()
	{
		parent::__construct();
	}

	public function index()
	{
		$data['title']="Not Found";
		$this->load->view('pages/error');
	}
}