2024-11-12 17:07:16 -05:00
|
|
|
<?php
|
|
|
|
|
|
|
|
|
|
declare(strict_types=1);
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* SPDX-FileCopyrightText: 2023 Nextcloud GmbH and Nextcloud contributors
|
|
|
|
|
* SPDX-License-Identifier: AGPL-3.0-or-later
|
|
|
|
|
*/
|
|
|
|
|
namespace NCU\Security\Signature\Exceptions;
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* @experimental 31.0.0
|
2026-01-09 04:58:55 -05:00
|
|
|
* @deprecated 33.0.0 use {@see \OCP\Security\Signature\Exceptions\SignatureElementNotFoundException}
|
|
|
|
|
* @psalm-suppress DeprecatedClass
|
2024-11-12 17:07:16 -05:00
|
|
|
*/
|
2024-11-21 05:25:00 -05:00
|
|
|
class SignatureElementNotFoundException extends SignatureException {
|
2024-11-12 17:07:16 -05:00
|
|
|
}
|