CHttpException: The controller 'Home_288Controller' was not found or does not implement IController.
	at CDefaultControllerFactory->CreateController(CRequestContext, string) in /home/lazurny/data/www/in-sochi.lazurny.ru/Libraries/Framework/System.Web.Mvc/CUrlRoutingHandler.php:line 24
	at CUrlRoutingHandler->ProcessRequest(string) in /home/lazurny/data/www/in-sochi.lazurny.ru/Libraries/Framework/System.Web/CHttpApplication.php:line 94
	at CHttpApplication->ProcessRequest() in /home/lazurny/data/www/in-sochi.lazurny.ru/index.php:line 45
34                    if (@file_exists($location))
35                        require_once $location;
36                }
37    
38                if (!class_exists($controllerType))
39                    throw new CHttpException(CHttpStatusCode::NotFound,
40                        CResourceManager::Package("System.Web.Mvc")->
41                            GetString("ControllerFactory_NoControllerFound", $controllerType, $area));
42    
43                $instance = new $controllerType();
44