<?php
// application/controllers/Errors.php

class notFound extends CI_Controller {
    public function index() {
        $this->load->view('mobile/not_found');
    }
}