HTTP_Exception_404 [ 404 ]: The requested URL docprint was not found on this server.

SYSPATH/classes/kohana/request/client/internal.php [ 111 ]

106 			$action = $request->action();
107 
108 			// If the action doesn't exist, it's a 404
109 			if ( ! $class->hasMethod('action_'.$action))
110 			{
111 				throw new HTTP_Exception_404('The requested URL :uri was not found on this server.',
112 													array(':uri' => $request->uri()));
113 			}
114 
115 			$method = $class->getMethod('action_'.$action);
116 			$method->invoke($controller);
  1. SYSPATH/classes/kohana/request/client.php [ 64 ] » Kohana_Request_Client_Internal->execute_request(arguments)

  2. SYSPATH/classes/kohana/request.php [ 1154 ] » Kohana_Request_Client->execute(arguments)

  3. DOCROOT/index.php [ 109 ] » Kohana_Request->execute()

Environment