File tree 4 files changed +36
-1
lines changed
4 files changed +36
-1
lines changed Original file line number Diff line number Diff line change 616
616
'OCP \\User \\Events \\UserLoggedInWithCookieEvent ' => $ baseDir . '/lib/public/User/Events/UserLoggedInWithCookieEvent.php ' ,
617
617
'OCP \\User \\Events \\UserLoggedOutEvent ' => $ baseDir . '/lib/public/User/Events/UserLoggedOutEvent.php ' ,
618
618
'OCP \\User \\GetQuotaEvent ' => $ baseDir . '/lib/public/User/GetQuotaEvent.php ' ,
619
+ 'OCP \\User \\NoUserException ' => $ baseDir . '/lib/public/User/NoUserException.php ' ,
619
620
'OCP \\Util ' => $ baseDir . '/lib/public/Util.php ' ,
620
621
'OCP \\WorkflowEngine \\EntityContext \\IContextPortation ' => $ baseDir . '/lib/public/WorkflowEngine/EntityContext/IContextPortation.php ' ,
621
622
'OCP \\WorkflowEngine \\EntityContext \\IDisplayName ' => $ baseDir . '/lib/public/WorkflowEngine/EntityContext/IDisplayName.php ' ,
Original file line number Diff line number Diff line change @@ -649,6 +649,7 @@ class ComposerStaticInit749170dad3f5e7f9ca158f5a9f04f6a2
649
649
'OCP \\User \\Events \\UserLoggedInWithCookieEvent ' => __DIR__ . '/../../.. ' . '/lib/public/User/Events/UserLoggedInWithCookieEvent.php ' ,
650
650
'OCP \\User \\Events \\UserLoggedOutEvent ' => __DIR__ . '/../../.. ' . '/lib/public/User/Events/UserLoggedOutEvent.php ' ,
651
651
'OCP \\User \\GetQuotaEvent ' => __DIR__ . '/../../.. ' . '/lib/public/User/GetQuotaEvent.php ' ,
652
+ 'OCP \\User \\NoUserException ' => __DIR__ . '/../../.. ' . '/lib/public/User/NoUserException.php ' ,
652
653
'OCP \\Util ' => __DIR__ . '/../../.. ' . '/lib/public/Util.php ' ,
653
654
'OCP \\WorkflowEngine \\EntityContext \\IContextPortation ' => __DIR__ . '/../../.. ' . '/lib/public/WorkflowEngine/EntityContext/IContextPortation.php ' ,
654
655
'OCP \\WorkflowEngine \\EntityContext \\IDisplayName ' => __DIR__ . '/../../.. ' . '/lib/public/WorkflowEngine/EntityContext/IDisplayName.php ' ,
Original file line number Diff line number Diff line change 22
22
*/
23
23
namespace OC \User ;
24
24
25
- class NoUserException extends \Exception {
25
+ /** @depreacted 25.0.0 */
26
+ class NoUserException extends \OCP \User \NoUserException {
26
27
}
Original file line number Diff line number Diff line change
1
+ <?php
2
+
3
+ declare (strict_types=1 );
4
+
5
+ /**
6
+ * @copyright Copyright (c) 2022 Julius Härtl <jus@bitgrid.net>
7
+ *
8
+ * @author Julius Härtl <jus@bitgrid.net>
9
+ *
10
+ * @license GNU AGPL version 3 or any later version
11
+ *
12
+ * This program is free software: you can redistribute it and/or modify
13
+ * it under the terms of the GNU Affero General Public License as
14
+ * published by the Free Software Foundation, either version 3 of the
15
+ * License, or (at your option) any later version.
16
+ *
17
+ * This program is distributed in the hope that it will be useful,
18
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
19
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
20
+ * GNU Affero General Public License for more details.
21
+ *
22
+ * You should have received a copy of the GNU Affero General Public License
23
+ * along with this program. If not, see <http://www.gnu.org/licenses/>.
24
+ *
25
+ */
26
+ namespace OCP \User ;
27
+
28
+ /**
29
+ * @since 25.0.0
30
+ */
31
+ class NoUserException extends \Exception {
32
+ }
You can’t perform that action at this time.
0 commit comments