blob: 7bb7708495b39188c68108aa3234bf4233a6717b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
|
<?php defined('SYSPATH') OR die('No direct access allowed.');
/**
* Creates a "Page Not Found" exception.
*
* $Id: Kohana_404_Exception.php 4729 2009-12-29 20:35:19Z isaiah $
*
* @package Kohana
* @author Kohana Team
* @copyright (c) 2007-2009 Kohana Team
* @license http://kohanaphp.com/license
*/
class Kohana_404_Exception_Core extends Kohana_Exception {
protected $code = E_PAGE_NOT_FOUND;
/**
* Set internal properties.
*
* @param string URI of page
* @param string custom error template
*/
public function __construct($page = NULL)
{
if ($page === NULL)
{
// Use the complete URI
$page = Router::$complete_uri;
}
parent::__construct('The page you requested, %page%, could not be found.', array('%page%' => $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
|