This repository was archived by the owner on Aug 8, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathexceptions.php
More file actions
238 lines (211 loc) · 3.84 KB
/
exceptions.php
File metadata and controls
238 lines (211 loc) · 3.84 KB
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
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
<?php
/**
* @author: KentProjects <developer@kentprojects.com>
* @license: Copyright KentProjects
* @link: http://kentprojects.com
*/
/**
* Class CacheException
*/
final class CacheException extends Exception
{
}
/**
* Class DatabaseException
*/
final class DatabaseException extends Exception
{
protected $query;
protected $types;
protected $params;
/**
* @param string $error_message
* @param int $error_no
* @param string $query
* @param string $types
* @param array $params
*/
public function __construct($error_message, $error_no = 0, $query = null, $types = null, $params = null)
{
parent::__construct($error_message, $error_no);
$this->query = $query;
$this->types = $types;
$this->params = $params;
}
public function getParams()
{
return $this->params;
}
public function getQuery()
{
return $this->query;
}
public function getTypes()
{
return $this->types;
}
}
/**
* Class FormException
*/
class FormException extends Exception
{
}
/**
* Class HttpRedirectException
*/
final class HttpRedirectException extends Exception
{
protected $location;
/**
* @param int $code
* @param string $location
*/
public function __construct($code, $location)
{
parent::__construct("Redirecting to $location", $code);
$this->location = $location;
}
/**
* @return string
*/
public function getLocation()
{
return $this->location;
}
}
/**
* Class HttpStatusException
*/
class HttpStatusException extends Exception
{
/**
* @var string
*/
protected $data = array();
/**
* @var string
*/
protected $name;
/**
* The status message that is associated with the status code.
*
* @var string
*/
protected $status_message;
/**
* @param int $code
* @param string $message
* @param Exception $previous
*/
public function __construct($code, $message = null, Exception $previous = null)
{
$this->name = __CLASS__;
$this->status_message = getHttpStatusForCode($code);
if (empty($this->status_message))
{
trigger_error(
"Bad status code used in HttpStatusException (" . $code . ") for: " . $message .
(!empty($previous) ? " with exception " . (string)$previous : ""),
E_USER_WARNING
);
}
if (empty($message))
{
$message = $this->status_message;
}
parent::__construct($message, $code, $previous);
}
/**
* @return string
*/
public function __toString()
{
return sprintf(
"HTTP %d (%s): %s",
$this->getCode(), $this->status_message,
$this->getMessage()
);
}
/**
* @return string
*/
public function getData()
{
return $this->data;
}
/**
* @return string
*/
public function getName()
{
return $this->name;
}
/**
* @return string
*/
public function getStatusMessage()
{
return $this->status_message;
}
/**
* @param array $data
* @return $this
*/
public function setData(array $data)
{
$this->data = $data;
return $this;
}
/**
* @param string $name
* @return $this
*/
public function setName($name)
{
$this->name = $name;
return $this;
}
}
/**
* Class IntentException
*/
final class IntentException extends Exception
{
}
/**
* Class PHPException
*/
final class PHPException extends Exception
{
protected $context;
protected $file;
protected $line;
/**
* @param int $error_no
* @param string $error_string
* @param string $error_file
* @param string $error_line
* @param string $error_context
* @param Exception $previous
*/
public function __construct($error_no, $error_string, $error_file, $error_line, $error_context, Exception $previous = null)
{
parent::__construct($error_string, $error_no, $previous);
$this->context = $error_context;
$this->file = $error_file;
$this->line = $error_line;
}
}
/**
* Class RequestException
*/
final class RequestException extends Exception
{
}
/**
* Class ValidationException
*/
final class ValidationException extends FormException
{
}