0
0
Fork 0
mirror of https://github.com/nextcloud/server.git synced 2025-05-19 04:32:04 +00:00
nextcloud_server/lib/public/Encryption/Exceptions/InvalidHeaderException.php
Robin Appelman b0b8159d6a
fix: throw a better error if we can't get the encrypted header size
Signed-off-by: Robin Appelman <robin@icewind.nl>
2025-05-09 22:33:45 +02:00

17 lines
308 B
PHP

<?php
/**
* SPDX-FileCopyrightText: 2025 Nextcloud GmbH and Nextcloud contributors
* SPDX-License-Identifier: AGPL-3.0-only
*/
namespace OCP\Encryption\Exceptions;
use OCP\HintException;
/**
* Class InvalidHeaderException
*
* @since 32.0.0
*/
class InvalidHeaderException extends HintException {
}