* @package entries * @version 1 * @link http://www.zentao.net */ class errorEntry extends entry { /** * 404 Not Found. * * @access public * @return string */ public function notFound() { return $this->send(404, array('error' => 'not found')); } }