File tree Expand file tree Collapse file tree 1 file changed +16
-1
lines changed
user_guide_src/source/installation Expand file tree Collapse file tree 1 file changed +16
-1
lines changed Original file line number Diff line number Diff line change @@ -15,6 +15,19 @@ Please refer to the upgrade instructions corresponding to your installation meth
1515Breaking Changes
1616****************
1717
18+ When you extend Exceptions
19+ ==========================
20+
21+ If you are extending ``CodeIgniter\Debug\Exceptions `` and have not overridden
22+ the ``exceptionHandler() `` method, defining the new ``Config\Exceptions::handler() ``
23+ method in your **app/Config/Exceptions.php ** will cause the specified Exception
24+ Handler to be executed.
25+
26+ Your overridden code will no longer be executed, so make any necessary changes
27+ by defining your own exception handler.
28+
29+ See :ref: `custom-exception-handlers ` for the detail.
30+
1831Mandatory File Changes
1932**********************
2033
@@ -52,7 +65,9 @@ and it is recommended that you merge the updated versions with your application:
5265Config
5366------
5467
55- - @TODO
68+ - app/Config/Exceptions.php
69+ - Added the new method ``handler() `` that define custom Exception Handlers.
70+ See :ref: `custom-exception-handlers `.
5671
5772All Changes
5873===========
You can’t perform that action at this time.
0 commit comments