0
0
mirror of https://github.com/nextcloud/server.git synced 2024-12-30 17:08:35 +00:00
nextcloud_server/lib/unstable/Config/Exceptions/UnknownKeyException.php
Maxence Lange b791cc987e fix(NCU): removing all @since
Signed-off-by: Maxence Lange <maxence@artificial-owl.com>
2024-12-03 18:49:46 -01:00

18 lines
291 B
PHP

<?php
declare(strict_types=1);
/**
* SPDX-FileCopyrightText: 2024 Nextcloud GmbH and Nextcloud contributors
* SPDX-License-Identifier: AGPL-3.0-or-later
*/
namespace NCU\Config\Exceptions;
use Exception;
/**
* @experimental 31.0.0
*/
class UnknownKeyException extends Exception {
}