包 | system.base |
---|---|
继承 | class CErrorEvent » CEvent » CComponent |
源自 | 1.0 |
版本 | $Id: CErrorEvent.php 2799 2011-01-01 19:31:13Z qiang.xue $ |
源码 |
CErrorEvent表示由onError事件产生异常。
公共属性
属性 | 类型 | 描述 | 定义在 |
---|---|---|---|
code | string | 错误码 | CErrorEvent |
file | string | 错误文件 | CErrorEvent |
handled | boolean | 是否处理事件。默认为false。 当这个值设置为true,其它未处理的事件处理程序。 | CEvent |
line | string | 错误行号 | CErrorEvent |
message | string | 错误信息 | CErrorEvent |
params | mixed | 附加的事件参数. | CEvent |
sender | object | 事件的发起者 | CEvent |
公共方法
属性详细
code
属性
public string $code;
错误码
file
属性
public string $file;
错误文件
line
属性
public string $line;
错误行号
message
属性
public string $message;
错误信息
方法详细
__construct()
方法
public void __construct(mixed $sender, string $code, string $message, string $file, integer $line)
| ||
$sender | mixed | 事件发起者 |
$code | string | 错误码 |
$message | string | 错误信息 |
$file | string | 错误文件 |
$line | integer | 错误行号 |
public function __construct($sender,$code,$message,$file,$line)
{
$this->code=$code;
$this->message=$message;
$this->file=$file;
$this->line=$line;
parent::__construct($sender);
}
构造器.