2026-04-29 16:29:47 — PHP8.1.32 — inews/search/catid-3-order-inputtime-page-275.html

CodeIgniter\Database\Exceptions\DatabaseException #1213

Deadlock found when trying to get lock; try restarting transaction
DELETE FROM `www_1_inews_search`
WHERE `inputtime` < 1777447787

/www/wwwroot/www.chzlib.org.cn/dayrui/System/Database/BaseConnection.php at line 684

677                     }
678                 }
679 
680                 // Let others do something with this query.
681                 Events::trigger('DBQuery'$query);
682 
683                 if ($exception instanceof DatabaseException) {
684                     throw new DatabaseException(
685                         $exception->getMessage().'<br>'.$query,
686                         $exception->getCode(),
687                         $exception,
688                     );
689                 }
690 
691                 return false;
    Caused by:
    CodeIgniter\Database\Exceptions\DatabaseException #1213
    Deadlock found when trying to get lock; try restarting transaction    
    /www/wwwroot/www.chzlib.org.cn/dayrui/System/Database/MySQLi/Connection.php:332    
    Caused by:
    mysqli_sql_exception #1213
    Deadlock found when trying to get lock; try restarting transaction    
    /www/wwwroot/www.chzlib.org.cn/dayrui/System/Database/MySQLi/Connection.php:327    
  1. /www/wwwroot/www.chzlib.org.cn/dayrui/System/Database/MySQLi/Connection.php : 327   —  mysqli->query ()

    320             $this->connID->next_result();
    321             if ($res $this->connID->store_result()) {
    322                 $res->free();
    323             }
    324         }
    325 
    326         try {
    327             return $this->connID->query($this->prepQuery($sql), $this->resultMode);
    328         } catch (mysqli_sql_exception $e) {
    329             log_message('error', (string) $e);
    330 
    331             if ($this->DBDebug) {
    332                 throw new DatabaseException($e->getMessage(), $e->getCode(), $e);
    333             }
    334         }
    
  2. /www/wwwroot/www.chzlib.org.cn/dayrui/System/Database/BaseConnection.php : 729   —  CodeIgniter\Database\MySQLi\Connection->execute ()

    722      */
    723     public function simpleQuery(string $sql)
    724     {
    725         if (empty($this->connID)) {
    726             $this->initialize();
    727         }
    728 
    729         return $this->execute($sql);
    730     }
    731 
    732     /**
    733      * Disable Transactions
    734      *
    735      * This permits transactions to be disabled at run-time.
    736      *
    
  3. /www/wwwroot/www.chzlib.org.cn/dayrui/System/Database/BaseConnection.php : 646   —  CodeIgniter\Database\BaseConnection->simpleQuery ()

    639 
    640             return $query;
    641         }
    642 
    643         // Run the query for real
    644         try {
    645             $exception      null;
    646             $this->resultID = $this->simpleQuery($query->getQuery());
    647         } catch (DatabaseException $exception) {
    648             $this->resultID false;
    649         }
    650 
    651         if ($this->resultID === false) {
    652             $query->setDuration($startTime$startTime);
    653 
    
  4. /www/wwwroot/www.chzlib.org.cn/dayrui/System/Database/BaseBuilder.php : 2848   —  CodeIgniter\Database\BaseConnection->query ()

    2841             $sql $this->_limit($sqltrue);
    2842         }
    2843 
    2844         if ($resetData) {
    2845             $this->resetWrite();
    2846         }
    2847 
    2848         return $this->testMode ? $sql : $this->db->query($sql, $this->binds, false);
    2849     }
    2850 
    2851     /**
    2852      * Sets data and calls batchExecute to run queries
    2853      *
    2854      * @param array|object|null $set         a dataset
    2855      * @param array|RawSql|null $constraints
    
  5. /www/wwwroot/www.chzlib.org.cn/dayrui/App/Module/Models/Search.php : 94   —  CodeIgniter\Database\BaseBuilder->delete ()

     87             $time SYS_CACHE_SEARCH 3600;
     88             if ($data && $data['inputtime'] + $time SYS_TIME) {
     89                 $data = [];
     90             }
     91             $this->db->table($this->mytable.'_search')->where('inputtime <'. (SYS_TIME $time))->delete();
     92         } else {
     93             $data = [];
     94             $this->db->table($this->mytable.'_search')->where('inputtime <'. (SYS_TIME - 3600))->delete();
     95         }
     96 
     97         // 缓存不存在重新入库更新缓存
     98         if (!$data) {
     99 
    100             $this->get['keyword'] = $this->get['catid'] = null;
    101             unset($this->get['keyword'], $this->get['catid']);
    
  6. /www/wwwroot/www.chzlib.org.cn/dayrui/App/Module/Extends/Home/Module.php : 147   —  Phpcmf\Model\Module\Search->get_data ()

    140                 'params' => $get,
    141                 'keyword' => $get['keyword'],
    142                 'contentid' => 0,
    143                 'inputtime' => SYS_TIME
    144             ];
    145         } else {
    146             // 搜索数据
    147             $data = $search->get_data();
    148             if (isset($data['code']) && $data['code'] == && $data['msg']) {
    149                 $this->_msg(0$data['msg']);
    150             }
    151             unset($data['params']['page']);
    152         }
    153 
    154         // 格式化数据
    
  7. /www/wwwroot/www.chzlib.org.cn/dayrui/App/Inews/Controllers/Search.php : 14   —  Phpcmf\Home\Module->_Search ()

     7 class Search extends \Phpcmf\Home\Module
     8 {
     9 
    10     public function index() {
    11         // 初始化模块
    12         $this->_module_init();
    13         // 调用搜索方法
    14         $this->_Search();
    15     }
    16 
    17 }
    18 
    
  8. /www/wwwroot/www.chzlib.org.cn/dayrui/System/Extend/Run.php : 149   —  Phpcmf\Controllers\Search->index ()

    142                         'value' => $value
    143                     ]);
    144 
    145                 }
    146             }
    147         }
    148 
    149         $app->$method();
    150 
    151         if (CI_DEBUG) {
    152             $tool = new \CodeIgniter\Debug\Toolbar(config(\Config\Toolbar::class));
    153             $tool->prepare($this);
    154         }
    155         
    156        
    
  9. /www/wwwroot/www.chzlib.org.cn/dayrui/System/Init.php : 402   —  Frame\Run->bootWeb ()

    395         $tool->respond();
    396     });
    397 }
    398 
    399 
    400 // 启动框架
    401 $run = new \Frame\Run();
    402 $run->bootWeb();
    403 
    404 
    
  10. require /www/wwwroot/www.chzlib.org.cn/dayrui/Fcms/Init.php   —   require()

  11. require /www/wwwroot/www.chzlib.org.cn/public/index.php   —   require()

$_SERVER

Key Value
USER www
HOME /home/www
HTTP_ACCEPT_ENCODING gzip, br, zstd, deflate
HTTP_USER_AGENT Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)
HTTP_ACCEPT */*
PATH_INFO
HTTP_HOST www.chzlib.org.cn
REDIRECT_STATUS 200
SERVER_NAME www.chzlib.org.cn
SERVER_PORT 443
SERVER_ADDR 10.209.65.37
REMOTE_PORT 25618
REMOTE_ADDR 216.73.217.87
SERVER_SOFTWARE nginx/1.29.4
GATEWAY_INTERFACE CGI/1.1
HTTPS on
REQUEST_SCHEME https
SERVER_PROTOCOL HTTP/2.0
DOCUMENT_ROOT /www/wwwroot/www.chzlib.org.cn/public
DOCUMENT_URI /index.php
REQUEST_URI /inews/search/catid-3-order-inputtime-page-275.html
SCRIPT_NAME /index.php
CONTENT_LENGTH
CONTENT_TYPE
REQUEST_METHOD GET
QUERY_STRING
SCRIPT_FILENAME /www/wwwroot/www.chzlib.org.cn/public/index.php
FCGI_ROLE RESPONDER
PHP_SELF /index.php
REQUEST_TIME_FLOAT
1777451387.3298
REQUEST_TIME
1777451387

Constants

Key Value
IS_DEV
1
IS_EDIT_TPL
0
ROOTPATH /www/wwwroot/www.chzlib.org.cn/public/
WEBPATH /www/wwwroot/www.chzlib.org.cn/public/
FCPATH /www/wwwroot/www.chzlib.org.cn/dayrui/
WRITEPATH /www/wwwroot/www.chzlib.org.cn/cache/
CONFIGPATH /www/wwwroot/www.chzlib.org.cn/config/
SELF index.php
IS_ADMIN

                                                                    
IS_VERSION
1
FRAMEPATH /www/wwwroot/www.chzlib.org.cn/dayrui/System/
CMSPATH /www/wwwroot/www.chzlib.org.cn/dayrui/Fcms/
MAX_CATEGORY
300
COREPATH /www/wwwroot/www.chzlib.org.cn/dayrui/Fcms/
BASEPATH /www/wwwroot/www.chzlib.org.cn/dayrui/System/System/
APPSPATH /www/wwwroot/www.chzlib.org.cn/dayrui/App/
MYPATH /www/wwwroot/www.chzlib.org.cn/dayrui/My/
TPLPATH /www/wwwroot/www.chzlib.org.cn/template/
IS_XRDEV
0
MOBILE_TPL_DIR mobile
UEDITOR_IMG_TITLE {cms_img_title}
TESTPATH /www/wwwroot/www.chzlib.org.cn/cache/tests/
TEMPPATH /www/wwwroot/www.chzlib.org.cn/dayrui/Fcms/Temp/
COMPOSER_PATH /www/wwwroot/www.chzlib.org.cn/public/vendor/autoload.php
IS_AJAX

                                                                    
IS_POST

                                                                    
IS_AJAX_POST

                                                                    
SYS_TIME
1777451387
SYS_DEBUG
0
SYS_ADMIN_CODE
0
SYS_ADMIN_LOG
0
SYS_AUTO_FORM
0
SYS_ADMIN_PAGESIZE
10
SYS_CRON_AUTH
0
SYS_TABLE_ISFOOTER
0
SYS_SMS_IMG_CODE
0
SYS_GO_404
0
SYS_THEME_ROOT_PATH
0
SYS_301
1
SYS_NOT_UPDATE
1
SYS_URL_ONLY
0
SYS_URL_REL
0
SYS_KEY PHPCMF47ac9a85a58e0910f6a579c205ab5805
SYS_API_TOKEN
SYS_CSRF
0
SYS_CSRF_TIME
0
SYS_API_REL
0
SYS_HTTPS
1
SYS_NOT_ADMIN_CACHE
1
SYS_ADMIN_MODE
0
SYS_ADMIN_LOGINS
0
SYS_ADMIN_LOGIN_AES
SYS_ATTACHMENT_DOWN_REMOTE
0
SYS_ATTACHMENT_DOWN_SIZE
50
SYS_ADMIN_LOGIN_TIME
0
SYS_LOGIN_AES
0
SYS_ADMIN_OAUTH
0
SYS_ADMIN_SMS_LOGIN
SYS_ADMIN_SMS_CHECK
SYS_ATTACHMENT_DB
1
SYS_ATTACHMENT_PAGESIZE
36
SYS_ATTACHMENT_GUEST
0
SYS_ATTACHMENT_CF
1
SYS_ATTACHMENT_REL
0
SYS_ATTACHMENT_PATH /www/wwwroot/oss.chzlib.org.cn/
SYS_ATTACHMENT_SAVE_TYPE
0
SYS_ATTACHMENT_SAVE_DIR
SYS_ATTACHMENT_SAVE_ID
0
SYS_ATTACHMENT_URL https://oss.chzlib.org.cn/
SYS_AVATAR_PATH /www/wwwroot/oss.chzlib.org.cn/member/
SYS_AVATAR_URL https://oss.chzlib.org.cn/member/
SYS_API_CODE
0
SYS_ATTACHMENT_SAFE
0
IS_ADMIN_CACHE 1
SQGS 迅睿CMS开源框架
CI_DEBUG
1
IS_FB_DEBUG
0
ENVIRONMENT development
SYS_CACHE
0
SYS_CACHE_TYPE
1
SYS_CACHE_SHOW
5
SYS_CACHE_LIST
5
SYS_CACHE_SEARCH
5
SYS_CACHE_SMS
120
SYS_CACHE_CRON
0
SYS_CACHE_CLEAR
0
FC_NOW_URL https://www.chzlib.org.cn/inews/search/catid-3-order-inputtime-page-275.html
FC_NOW_HOST https://www.chzlib.org.cn/
DOMAIN_NAME www.chzlib.org.cn
WEB_DIR /
CMSURI inews/search/catid-3-order-inputtime-page-275.html
IS_API

                                                                    
IS_USE_MEMBER /www/wwwroot/www.chzlib.org.cn/dayrui/App/Member/
IS_USE_MODULE /www/wwwroot/www.chzlib.org.cn/dayrui/App/Module/
APPPATH /www/wwwroot/www.chzlib.org.cn/dayrui/App/Inews/
APP_DIR inews
IS_MEMBER

                                                                    
IS_HOME
1
FRAME_PHP_VERSION 8.0
FRAME_NAME System
FRAME_VERSION 4.7
EXIT_SUCCESS
0
EXIT_ERROR
1
EXIT_CONFIG
3
EXIT_UNKNOWN_FILE
4
EXIT_UNKNOWN_CLASS
5
EXIT_UNKNOWN_METHOD
6
EXIT_USER_INPUT
7
EXIT_DATABASE
8
EXIT__AUTO_MIN
9
EXIT__AUTO_MAX
125
EVENT_PRIORITY_LOW
200
EVENT_PRIORITY_NORMAL
100
EVENT_PRIORITY_HIGH
10
WEIXIN_MORE_ID
1
WEIXIN_MORE_NAME
IS_COMMON
1
IS_SITES
0
CMF_NAME 迅睿CMS框架开源版
CMF_VERSION 4.7.1
CMF_UPDATE_TIME 1777277194
SITE_ID
1
SITE_URL https://www.chzlib.org.cn/
SITE_MURL https://www.chzlib.org.cn/
SITE_NAME 崇左市图书馆
SITE_LOGO https://www.chzlib.org.cn/static/assets/logo-web.png
SITE_IS_MOBILE
0
SITE_IS_MOBILE_HTML
0
SITE_MOBILE_DIR mobile
SITE_MOBILE_NOT_PAD
0
SITE_THUMB_WATERMARK
0
SITE_THEME default
SITE_SEOJOIN -
SITE_REWRITE
0
SITE_TEMPLATE county
SITE_LANGUAGE zh-cn
SITE_TIME_FORMAT Y-m-d H:i
ADMIN_URL https://www.chzlib.org.cn/
PAY_URL https://www.chzlib.org.cn/
ROOT_URL https://www.chzlib.org.cn/
OAUTH_URL https://www.chzlib.org.cn/
THEME_PATH https://www.chzlib.org.cn/static/
LANG_PATH https://www.chzlib.org.cn/api/language/zh-cn/
ROOT_THEME_PATH https://www.chzlib.org.cn/static/
HOME_THEME_PATH https://www.chzlib.org.cn/static/default/
MOBILE_THEME_PATH https://www.chzlib.org.cn/static/default/
SYS_UPLOAD_PATH /www/wwwroot/oss.chzlib.org.cn/
SYS_UPLOAD_URL https://oss.chzlib.org.cn/
CLIENT_URL https://www.chzlib.org.cn/
CLIENT_NAME pc
IS_CLIENT
MEMBER_URL https://www.chzlib.org.cn/index.php?s=member
SITE_FID
0
MEMBER_CNAME 姓名
SITE_ICP 桂ICP备16009335号
SITE_TONGJI 统计代码
SITE_LOGIN_TIME
86400
SITE_SCORE 金币
SITE_EXPERIENCE 经验
IS_API_HTTP
0
USER_HTTP_CODE f3518a4428f11ef873cb338be7e0e681
MOD_DIR inews
IS_SHARE 0
IS_COMMENT
0
MODULE_URL /inews.html
MODULE_NAME 资讯动态
  1. /www/wwwroot/www.chzlib.org.cn/public/index.php
  2. /www/wwwroot/www.chzlib.org.cn/dayrui/Fcms/Init.php
  3. /www/wwwroot/www.chzlib.org.cn/config/custom.php
  4. /www/wwwroot/www.chzlib.org.cn/cache/config/system.php
  5. /www/wwwroot/www.chzlib.org.cn/cache/config/cache.php
  6. /www/wwwroot/www.chzlib.org.cn/config/rewrite.php
  7. /www/wwwroot/www.chzlib.org.cn/cache/config/domain_app.php
  8. /www/wwwroot/www.chzlib.org.cn/dayrui/Fcms/Core/Helper.php
  9. /www/wwwroot/www.chzlib.org.cn/dayrui/System/Init.php
  10. /www/wwwroot/www.chzlib.org.cn/dayrui/Fcms/Core/Auto.php
  11. /www/wwwroot/www.chzlib.org.cn/dayrui/Fcms/Core/Service.php
  12. /www/wwwroot/www.chzlib.org.cn/dayrui/Fcms/Core/Hooks.php
  13. /www/wwwroot/www.chzlib.org.cn/dayrui/System/Extend/Run.php
  14. /www/wwwroot/www.chzlib.org.cn/dayrui/Fcms/Core/Phpcmf.php
  15. /www/wwwroot/www.chzlib.org.cn/dayrui/System/Extend/Controller.php
  16. /www/wwwroot/www.chzlib.org.cn/dayrui/App/Module/Config/Auto.php
  17. /www/wwwroot/www.chzlib.org.cn/dayrui/App/Module/Config/Hooks.php
  18. /www/wwwroot/www.chzlib.org.cn/dayrui/App/Module/Config/Filters.php
  19. /www/wwwroot/www.chzlib.org.cn/dayrui/App/Member/Config/Hooks.php
  20. /www/wwwroot/www.chzlib.org.cn/dayrui/App/Mform/Config/Auto.php
  21. /www/wwwroot/www.chzlib.org.cn/dayrui/App/Mform/Config/Hooks.php
  22. /www/wwwroot/www.chzlib.org.cn/dayrui/App/Weixin/Config/Hooks.php
  23. /www/wwwroot/www.chzlib.org.cn/dayrui/Fcms/Library/Cache.php
  24. /www/wwwroot/www.chzlib.org.cn/dayrui/App/Weixin/Config/Filters.php
  25. /www/wwwroot/www.chzlib.org.cn/dayrui/App/Form/Config/Auto.php
  26. /www/wwwroot/www.chzlib.org.cn/dayrui/App/Alisms/Config/Hooks.php
  27. /www/wwwroot/www.chzlib.org.cn/dayrui/App/Client/Config/Hooks.php
  28. /www/wwwroot/www.chzlib.org.cn/dayrui/App/Weblog/Config/Hooks.php
  29. /www/wwwroot/www.chzlib.org.cn/dayrui/App/Safe/Config/Hooks.php
  30. /www/wwwroot/www.chzlib.org.cn/dayrui/System/Config/Services.php
  31. /www/wwwroot/www.chzlib.org.cn/dayrui/System/Config/BaseService.php
  32. /www/wwwroot/www.chzlib.org.cn/dayrui/System/Config/Factories.php
  33. /www/wwwroot/www.chzlib.org.cn/dayrui/System/Config/Factory.php
  34. /www/wwwroot/www.chzlib.org.cn/dayrui/System/Config/BaseConfig.php
  35. /www/wwwroot/www.chzlib.org.cn/dayrui/System/Config/Exceptions.php
  36. /www/wwwroot/www.chzlib.org.cn/dayrui/System/Debug/Exceptions.php
  37. /www/wwwroot/www.chzlib.org.cn/dayrui/System/Events/Events.php
  38. /www/wwwroot/www.chzlib.org.cn/dayrui/System/Debug/Timer.php
  39. /www/wwwroot/www.chzlib.org.cn/dayrui/System/Config/Toolbar.php
  40. /www/wwwroot/www.chzlib.org.cn/dayrui/System/Debug/Toolbar.php
  41. /www/wwwroot/www.chzlib.org.cn/dayrui/System/Debug/Toolbar/Collectors/Database.php
  42. /www/wwwroot/www.chzlib.org.cn/dayrui/System/Debug/Toolbar/Collectors/BaseCollector.php
  43. /www/wwwroot/www.chzlib.org.cn/dayrui/System/Config/Database.php
  44. /www/wwwroot/www.chzlib.org.cn/dayrui/System/Database/Config.php
  45. /www/wwwroot/www.chzlib.org.cn/dayrui/System/Debug/Toolbar/Collectors/Views.php
  46. /www/wwwroot/www.chzlib.org.cn/dayrui/Fcms/Core/View.php
  47. /www/wwwroot/www.chzlib.org.cn/dayrui/System/Debug/Toolbar/Collectors/Files.php
  48. /www/wwwroot/www.chzlib.org.cn/dayrui/System/Debug/Toolbar/Collectors/Routes.php
  49. /www/wwwroot/www.chzlib.org.cn/dayrui/App/Inews/Controllers/Search.php
  50. /www/wwwroot/www.chzlib.org.cn/dayrui/App/Module/Extends/Home/Module.php
  51. /www/wwwroot/www.chzlib.org.cn/cache/config/site.php
  52. /www/wwwroot/www.chzlib.org.cn/dayrui/My/Config/Version.php
  53. /www/wwwroot/www.chzlib.org.cn/dayrui/Fcms/Library/Lang.php
  54. /www/wwwroot/www.chzlib.org.cn/public/api/language/zh-cn/lang.php
  55. /www/wwwroot/www.chzlib.org.cn/dayrui/Fcms/Library/Input.php
  56. /www/wwwroot/www.chzlib.org.cn/dayrui/Fcms/Library/Security.php
  57. /www/wwwroot/www.chzlib.org.cn/dayrui/Fcms/Model/Member.php
  58. /www/wwwroot/www.chzlib.org.cn/dayrui/Fcms/Core/Model.php
  59. /www/wwwroot/www.chzlib.org.cn/dayrui/System/Extend/Model.php
  60. /www/wwwroot/www.chzlib.org.cn/config/database.php
  61. /www/wwwroot/www.chzlib.org.cn/dayrui/System/Database/Database.php
  62. /www/wwwroot/www.chzlib.org.cn/dayrui/System/Database/MySQLi/Connection.php
  63. /www/wwwroot/www.chzlib.org.cn/dayrui/System/Database/BaseConnection.php
  64. /www/wwwroot/www.chzlib.org.cn/dayrui/System/Database/ConnectionInterface.php
  65. /www/wwwroot/www.chzlib.org.cn/dayrui/App/Module/Config/Run.php
  66. /www/wwwroot/www.chzlib.org.cn/cache/config/domain_client.php
  67. /www/wwwroot/www.chzlib.org.cn/dayrui/Fcms/Library/Router.php
  68. /www/wwwroot/www.chzlib.org.cn/dayrui/App/Member/Libraries/Member_auth.php
  69. /www/wwwroot/www.chzlib.org.cn/config/hooks.php
  70. /www/wwwroot/www.chzlib.org.cn/dayrui/System/Extend/Hook.php
  71. /www/wwwroot/www.chzlib.org.cn/dayrui/App/Weixin/Config/Init.php
  72. /www/wwwroot/www.chzlib.org.cn/dayrui/App/Weixin/Models/Weixin.php
  73. /www/wwwroot/www.chzlib.org.cn/dayrui/System/Database/MySQLi/Builder.php
  74. /www/wwwroot/www.chzlib.org.cn/dayrui/System/Database/BaseBuilder.php
  75. /www/wwwroot/www.chzlib.org.cn/dayrui/System/Traits/ConditionalTrait.php
  76. /www/wwwroot/www.chzlib.org.cn/dayrui/System/Database/Query.php
  77. /www/wwwroot/www.chzlib.org.cn/dayrui/System/Database/QueryInterface.php
  78. /www/wwwroot/www.chzlib.org.cn/dayrui/System/Database/MySQLi/Result.php
  79. /www/wwwroot/www.chzlib.org.cn/dayrui/System/Database/BaseResult.php
  80. /www/wwwroot/www.chzlib.org.cn/dayrui/System/Database/ResultInterface.php
  81. /www/wwwroot/www.chzlib.org.cn/dayrui/App/Member/Libraries/Member.php
  82. /www/wwwroot/www.chzlib.org.cn/dayrui/App/Module/Config/Module_init.php
  83. /www/wwwroot/www.chzlib.org.cn/dayrui/Fcms/Model/Content.php
  84. /www/wwwroot/www.chzlib.org.cn/dayrui/App/Module/Models/Content.php
  85. /www/wwwroot/www.chzlib.org.cn/dayrui/Fcms/Model/Search.php
  86. /www/wwwroot/www.chzlib.org.cn/dayrui/App/Module/Models/Search.php
  87. /www/wwwroot/www.chzlib.org.cn/dayrui/System/Database/Exceptions/DatabaseException.php
  88. /www/wwwroot/www.chzlib.org.cn/dayrui/System/Exceptions/RuntimeException.php
  89. /www/wwwroot/www.chzlib.org.cn/dayrui/System/Exceptions/ExceptionInterface.php
  90. /www/wwwroot/www.chzlib.org.cn/dayrui/System/Database/Exceptions/ExceptionInterface.php
  91. /www/wwwroot/www.chzlib.org.cn/dayrui/System/Exceptions/HasExitCodeInterface.php
  92. /www/wwwroot/www.chzlib.org.cn/dayrui/System/Debug/ExceptionHandler.php
  93. /www/wwwroot/www.chzlib.org.cn/dayrui/System/Debug/BaseExceptionHandler.php
  94. /www/wwwroot/www.chzlib.org.cn/dayrui/System/Debug/ExceptionHandlerInterface.php
  95. /www/wwwroot/www.chzlib.org.cn/dayrui/System/Exceptions/Views/html/error_exception.php