55379c90df
修改了上一个版本的一些错误,第一次提交
25 lines
499 B
PHP
25 lines
499 B
PHP
<?php
|
|
/**
|
|
* Typecho Blog Platform
|
|
*
|
|
* @copyright Copyright (c) 2008 Typecho team (http://www.typecho.org)
|
|
* @license GNU General Public License 2.0
|
|
* @version $Id: Exception.php 106 2008-04-11 02:23:54Z magike.net $
|
|
*/
|
|
|
|
/**
|
|
* Typecho异常基类
|
|
* 主要重载异常打印函数
|
|
*
|
|
* @package Exception
|
|
*/
|
|
class Typecho_Exception extends Exception
|
|
{
|
|
|
|
public function __construct($message, $code = 0)
|
|
{
|
|
$this->message = $message;
|
|
$this->code = $code;
|
|
}
|
|
}
|