Missing Method in CountriesController

You are seeing this error because the action view is not defined in controller CountriesController

If you want to customize this error message, create app/views/errors/missing_action.ctp.

Fatal : Confirm you have created the CountriesController::view in file : app/controllers/countries_controller.php.

<?php
class CountriesController extends AppController {
   function view() {
   }

}
?>