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

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/webshop/offer.php [ 25 ] » Kohana_Route::get(arguments)

  2. {PHP internal call} » Controller_Webshop_Offer->before()

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

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

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

Environment