nextcloud/apps/files_reminders/lib/Exception/ReminderNotFoundException.php
Christopher Ng e969d277b6
perf(files_reminders): Reduce db queries on propfind
Signed-off-by: Christopher Ng <chrng8@gmail.com>
2025-04-28 09:10:55 +02: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 {
}