$page)); } /** * Throws a new 404 exception. * * @throws Kohana_404_Exception * @return void */ public static function trigger($page = NULL) { throw new Kohana_404_Exception($page); } /** * Sends 404 headers, to emulate server behavior. * * @return void */ public function sendHeaders() { // Send the 404 header header('HTTP/1.1 404 File Not Found'); } } // End Kohana 404 Exception