nextcloud/lib/public/Config/Exceptions/UnknownKeyException.php
Maxence Lange 33bff30e1d feat(lexicon): moving out from unstable
Signed-off-by: Maxence Lange <maxence@artificial-owl.com>
2025-07-24 15:56:33 -01:00

17 lines
284 B
PHP

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