CHttpException
CHttpException represents an exception caused by invalid operations of end-users.
The HTTP error code can be obtained via
statusCode.
Error handlers may use this status code to decide how to format the error page.
Protected Properties
Hide inherited properties
Property | Type | Description | Defined By |
code |
|
|
Exception |
file |
|
|
Exception |
line |
|
|
Exception |
message |
|
|
Exception |
Public Methods
Hide inherited methods
Method | Description | Defined By |
__construct() |
Constructor. |
CHttpException |
__toString() |
|
Exception |
__wakeup() |
|
Exception |
getCode() |
|
Exception |
getFile() |
|
Exception |
getLine() |
|
Exception |
getMessage() |
|
Exception |
getPrevious() |
|
Exception |
getTrace() |
|
Exception |
getTraceAsString() |
|
Exception |
Property Details
public integer $statusCode;
HTTP status code, such as 403, 404, 500, etc.
Method Details
public void __construct(integer $status, string $message=NULL, integer $code=0)
|
$status |
integer |
HTTP status code, such as 404, 500, etc. |
$message |
string |
error message |
$code |
integer |
error code |
Constructor.
Signup or Login in order to comment.