mirror of
https://github.com/nextcloud/server.git
synced 2024-12-30 17:08:35 +00:00
b791cc987e
Signed-off-by: Maxence Lange <maxence@artificial-owl.com>
18 lines
291 B
PHP
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 {
|
|
}
|