Skip to content

Commit 131edbf

Browse files
committed
Add E_DEPRECATED and E_USER_DEPRECATED constants
1 parent c6b9bac commit 131edbf

1 file changed

Lines changed: 3 additions & 1 deletion

File tree

system/core/Exceptions.php

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -70,9 +70,11 @@ class CI_Exceptions {
7070
E_CORE_WARNING => 'Core Warning',
7171
E_COMPILE_ERROR => 'Compile Error',
7272
E_COMPILE_WARNING => 'Compile Warning',
73+
E_DEPRECATED => 'Deprecated Notice',
7374
E_USER_ERROR => 'User Error',
7475
E_USER_WARNING => 'User Warning',
75-
E_USER_NOTICE => 'User Notice'
76+
E_USER_NOTICE => 'User Notice',
77+
E_USER_DEPRECATED => 'User Deprecated Notice'
7678
);
7779

7880
/**

0 commit comments

Comments
 (0)