first commit

This commit is contained in:
root
2026-03-21 17:04:18 +08:00
commit 3c38481573
617 changed files with 65539 additions and 0 deletions

19
var/Typecho/Exception.php Executable file
View File

@@ -0,0 +1,19 @@
<?php
namespace Typecho;
/**
* Typecho异常基类
* 主要重载异常打印函数
*
* @package Exception
*/
class Exception extends \Exception
{
public function __construct($message, $code = 0)
{
$this->message = $message;
$this->code = $code;
}
}