mirror of
https://github.com/nextcloud/server.git
synced 2026-06-29 12:24:50 +02:00
8d8891c5bc
Signed-off-by: Andy Scherzinger <info@andy-scherzinger.de>
16 lines
269 B
PHP
16 lines
269 B
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
/**
|
|
* SPDX-FileCopyrightText: 2023 Nextcloud GmbH and Nextcloud contributors
|
|
* SPDX-License-Identifier: AGPL-3.0-or-later
|
|
*/
|
|
|
|
namespace OCA\FilesReminders\Exception;
|
|
|
|
use Exception;
|
|
|
|
class UserNotFoundException extends Exception {
|
|
}
|