mirror of
https://github.com/nextcloud/server.git
synced 2026-07-11 18:47:17 -04:00
And use this new exception everywhere outside of where the old one was throw. Signed-off-by: Carl Schwan <carlschwan@kde.org>
16 lines
334 B
PHP
16 lines
334 B
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
/**
|
|
* SPDX-FileCopyrightText: 2016-2024 Nextcloud GmbH and Nextcloud contributors
|
|
* SPDX-FileCopyrightText: 2016 ownCloud, Inc.
|
|
* SPDX-License-Identifier: AGPL-3.0-only
|
|
*/
|
|
|
|
namespace OC\User;
|
|
|
|
use OCP\User\Exceptions\UserNotFoundException;
|
|
|
|
class NoUserException extends UserNotFoundException {
|
|
}
|