fix: throw a better error if we can't get the encrypted header size
Signed-off-by: Robin Appelman <robin@icewind.nl>pull/52761/head
parent
bb720fc6fa
commit
fa135d9535
@ -0,0 +1,17 @@
|
||||
<?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 {
|
||||
}
|
||||
Loading…
Reference in New Issue