修复事件异常错误

This commit is contained in:
2024-04-01 18:39:09 +08:00
parent 53cd57f160
commit 7fcfb6249d
3 changed files with 4 additions and 4 deletions

View File

@@ -2,7 +2,7 @@
namespace app\common\exception; namespace app\common\exception;
use extend\base\common\exception\EventExceptionBase; use base\common\exception\EventExceptionBase;
class EventException extends EventExceptionBase class EventException extends EventExceptionBase
{ {

View File

@@ -12,12 +12,12 @@ use think\console\Output;
class VersionBase extends Command class VersionBase extends Command
{ {
public const VERSION = 'v2.0.92'; public const VERSION = 'v2.0.93';
public const LAYUI_VERSION = '2.8.17'; public const LAYUI_VERSION = '2.8.17';
public const COMMENT = [ public const COMMENT = [
'给系统代码增加异常抛出', '修复事件异常错误',
'发布新版本', '发布新版本',
]; ];

View File

@@ -1,6 +1,6 @@
<?php <?php
namespace extend\base\common\exception; namespace base\common\exception;
use Exception; use Exception;