ATSUMI has caught an Exception : 2012-05-19T16:21:52+00:00

ERROR 404: Page Not Found

Exception type: app_PageNotFoundException

/tink/projects/rocketware-sites/atsumi/classes/mvc/controllers/mvc_AbstractController.php #122

Request: http://rocketware.co/sudoku/

Recoverer: recoverer_DisplayAndExit()

Recoverer action: Display debug data and exit.


ATSUMI: How to resolve this issue

Description

Your choosen paser has determined that the 'page_404' method of the 'rw_RocketwareController' controller should be called but the method or controller cannot be found. Please make sure it exists.

Example Code to create the controller and method

class rw_RocketwareController extends mvc_AbstractController {
	// The method to be called
	public function page_404 () {
		// Don't forget to set your view
		$this->setView('name_of_view');
	}
}

Example code to load a folder containing your controller

/* exmaple folders: models, views, controllers. These folders should exist in the 'classes/' folder */
Atsumi::references(array('myproject' => 'models views controllers'));

Stack Trace

#0 [internal function]: mvc_AbstractController::methodlessRequest('/404/')
#1 WORKSPACE/atsumi/classes/core/app/atsumi_AppHandler.php(240): call_user_func_array(Array(rw_RocketwareController(), 'methodlessRequest'), Array('/404/'))
#2 WORKSPACE/atsumi/classes/core/app/atsumi_AppHandler.php(176): atsumi_AppHandler::process()
#3 [internal function]: atsumi_AppHandler::go('/404/')
#4 WORKSPACE/atsumi/classes/core/Atsumi.php(101): call_user_func_array(Array(atsumi_AppHandler(), 'go'), Array('/404/'))
#5 WORKSPACE/atsumi/classes/core/Atsumi.php(174): Atsumi::__callStatic('app__go', Array('/404/'))
#6 WORKSPACE/rocketware-sites/pipe.php(51): Atsumi::app__go('/404/')