blob: f151138b6ff26df0134282bdba153022f2d0104a (
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
|
<?php
/**
* Exception classes file
*
* @author Qiang Xue <qiang.xue@gmail.com>
* @link http://www.pradosoft.com/
* @copyright Copyright © 2005-2014 PradoSoft
* @license http://www.pradosoft.com/license/
* @package System.Exceptions
*/
/**
* THttpException class
*
* THttpException represents an exception that is caused by invalid operations
* of end-users. The {@link getStatusCode StatusCode} gives the type of HTTP error.
* It is used by {@link TErrorHandler} to provide different error output to users.
*
* @author Qiang Xue <qiang.xue@gmail.com>
* @package System.Exceptions
* @since 3.0
*/
class THttpException extends TSystemException
{
private $_statusCode;
/**
* Constructor.
* @param integer HTTP status code, such as 404, 500, etc.
* @param string error message. This can be a string that is listed
* in the message file. If so, the message in the preferred language
* will be used as the error message. Any rest parameters will be used
* to replace placeholders ({0}, {1}, {2}, etc.) in the message.
*/
public function __construct($statusCode,$errorMessage)
{
$this->_statusCode=$statusCode;
$this->setErrorCode($errorMessage);
$errorMessage=$this->translateErrorMessage($errorMessage);
$args=func_get_args();
array_shift($args);
array_shift($args);
$n=count($args);
$tokens=array();
for($i=0;$i<$n;++$i)
$tokens['{'.$i.'}']=TPropertyValue::ensureString($args[$i]);
parent::__construct(strtr($errorMessage,$tokens));
}
/**
* @return integer HTTP status code, such as 404, 500, etc.
*/
public function getStatusCode()
{
return $this->_statusCode;
}
}
|