blob: 4c21831fc8b081a8fd5f74c4794027c3ec4f17d3 (
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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
|
<?php
/**
* TODO
*
* @package trails
*
* @author mlunzena
* @copyright (c) Authors
* @version $Id: trails.php 7001 2008-04-04 11:20:27Z mlunzena $
*/
class Trails_Exception extends Exception {
/**
* <FieldDescription>
*
* @access private
* @var <type>
*/
public $headers;
/**
* @param int the status code to be set in the response
* @param string a human readable presentation of the status code
* @param array a hash of additional headers to be set in the response
*
* @return void
*/
function __construct($status = 500, $reason = NULL, $headers = array()) {
if ($reason === NULL) {
$reason = Trails_Response::get_reason($status);
}
parent::__construct($reason, $status);
$this->headers = $headers;
}
/**
* <MethodDescription>
*
* @param type <description>
*
* @return type <description>
*/
function __toString() {
return "{$this->code} {$this->message}";
}
}
class Trails_DoubleRenderError extends Trails_Exception {
function __construct() {
$message =
"Render and/or redirect were called multiple times in this action. ".
"Please note that you may only call render OR redirect, and at most ".
"once per action.";
parent::__construct(500, $message);
}
}
class Trails_MissingFile extends Trails_Exception {
function __construct($message) {
parent::__construct(500, $message);
}
}
class Trails_RoutingError extends Trails_Exception {
function __construct($message) {
parent::__construct(400, $message);
}
}
class Trails_UnknownAction extends Trails_Exception {
function __construct($message) {
parent::__construct(404, $message);
}
}
class Trails_UnknownController extends Trails_Exception {
function __construct($message) {
parent::__construct(404, $message);
}
}
class Trails_SessionRequiredException extends Trails_Exception {
function __construct() {
$message = "Tried to access a non existing session.";
parent::__construct(500, $message);
}
}
|