0
0
Fork 0
mirror of https://github.com/nextcloud/server.git synced 2025-03-15 16:55:23 +00:00
nextcloud_server/apps/files_reminders/lib/Exception/ReminderNotFoundException.php
Christopher Ng 802886d592 perf(files_reminders): Reduce db queries on propfind
Signed-off-by: Christopher Ng <chrng8@gmail.com>
2025-02-21 14:03:01 -08:00

15 lines
273 B
PHP

<?php
declare(strict_types=1);
/**
* SPDX-FileCopyrightText: 2025 Nextcloud GmbH and Nextcloud contributors
* SPDX-License-Identifier: AGPL-3.0-or-later
*/
namespace OCA\FilesReminders\Exception;
use Exception;
class ReminderNotFoundException extends Exception {
}