ErrorException [ Fatal Error ]: Class 'HttpNotFoundException' not found

MODPATH/cms/classes/controller/cms/blog.php [ 60 ]

55 	public function action_entry()
56 	{
57 		$entryid = $this->request->param('id');
58 		$data = $this->_entries(array('entryid' => $entryid), 0, 1);
59 
60 		if (empty($data['entry_data'])) { throw new HttpNotFoundException; }
61 
62 		$data['data']['pagetitle'] = $data['entry_data'][0]['title'].'|'.$data['data']['pagetitle'];
63 
64 		$view = View::factory($this->_theme_path.'blog/'.$this->_blog->blogconfig['name'].'/default');
65 		foreach ($data as $key => $value) {
  1. {PHP internal call} » Kohana_Core::shutdown_handler()

Environment