Kohana_Exception [ 0 ]: The requested route does not exist: default

SYSPATH/classes/kohana/route.php [ 89 ]

84 	 */
85 	public static function get($name)
86 	{
87 		if ( ! isset(Route::$_routes[$name]))
88 		{
89 			throw new Kohana_Exception('The requested route does not exist: :route',
90 				array(':route' => $name));
91 		}
92 
93 		return Route::$_routes[$name];
94 	}
  1. APPPATH/classes/controller/filess.php [ 46 ] » Kohana_Route::get(arguments)

  2. {PHP internal call} » Controller_Filess->action_estates(arguments)

  3. SYSPATH/classes/kohana/request.php [ 1217 ] » ReflectionMethod->invokeArgs(arguments)

  4. APPPATH/bootstrap.php [ 396 ] » Kohana_Request->execute()

  5. DOCROOT/index.php [ 195 ] » require(arguments)

Environment