cms first commit
This commit is contained in:
24
catch/cms/exceptions/ColumnException.php
Normal file
24
catch/cms/exceptions/ColumnException.php
Normal file
@@ -0,0 +1,24 @@
|
||||
<?php
|
||||
// +----------------------------------------------------------------------
|
||||
// | Catch-CMS Design On 2020
|
||||
// +----------------------------------------------------------------------
|
||||
// | CatchAdmin [Just Like ~ ]
|
||||
// +----------------------------------------------------------------------
|
||||
// | Copyright (c) 2017~2020 http://catchadmin.com All rights reserved.
|
||||
// +----------------------------------------------------------------------
|
||||
// | Licensed ( https://github.com/yanwenwu/catch-admin/blob/master/LICENSE.txt )
|
||||
// +----------------------------------------------------------------------
|
||||
// | Author: JaguarJack [ njphper@gmail.com ]
|
||||
// +----------------------------------------------------------------------
|
||||
|
||||
declare(strict_types=1);
|
||||
|
||||
namespace catchAdmin\cms\exceptions;
|
||||
|
||||
use catcher\exceptions\CatchException;
|
||||
|
||||
class ColumnException extends CatchException
|
||||
{
|
||||
protected $code = 20002;
|
||||
|
||||
}
|
23
catch/cms/exceptions/TableException.php
Normal file
23
catch/cms/exceptions/TableException.php
Normal file
@@ -0,0 +1,23 @@
|
||||
<?php
|
||||
// +----------------------------------------------------------------------
|
||||
// | Catch-CMS Design On 2020
|
||||
// +----------------------------------------------------------------------
|
||||
// | CatchAdmin [Just Like ~ ]
|
||||
// +----------------------------------------------------------------------
|
||||
// | Copyright (c) 2017~2020 http://catchadmin.com All rights reserved.
|
||||
// +----------------------------------------------------------------------
|
||||
// | Licensed ( https://github.com/yanwenwu/catch-admin/blob/master/LICENSE.txt )
|
||||
// +----------------------------------------------------------------------
|
||||
// | Author: JaguarJack [ njphper@gmail.com ]
|
||||
// +----------------------------------------------------------------------
|
||||
|
||||
declare(strict_types=1);
|
||||
|
||||
namespace catchAdmin\cms\exceptions;
|
||||
|
||||
use catcher\exceptions\CatchException;
|
||||
|
||||
class TableException extends CatchException
|
||||
{
|
||||
protected $code = 20001;
|
||||
}
|
Reference in New Issue
Block a user