nextcloud/lib/unstable/Security/PublicPrivateKeyPairs/Exceptions/KeyPairException.php
Maxence Lange 4591430c9c feat(ocm): signing ocm requests
Signed-off-by: Maxence Lange <maxence@artificial-owl.com>
2024-12-04 09:30:55 -01:00

20 lines
373 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\Security\PublicPrivateKeyPairs\Exceptions;
use Exception;
/**
* global exception related to key pairs
*
* @experimental 31.0.0
* @since 31.0.0
*/
class KeyPairException extends Exception {
}