use CakeHttpExceptionNotFoundException;
public function index()
{
try {
$this->paginate();
} catch (NotFoundException $e) {
// Do something here like redirecting to first or last page.
// $this->request->getAttribute('paging') will give you required info.
}
}