nextcloud/lib/private/Encryption/Exceptions/EncryptionHeaderToLargeException.php

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

17 lines
444 B
PHP
Raw Normal View History

2015-02-24 13:05:19 -05:00
<?php
/**
* SPDX-FileCopyrightText: 2016-2024 Nextcloud GmbH and Nextcloud contributors
* SPDX-FileCopyrightText: 2016 ownCloud, Inc.
* SPDX-License-Identifier: AGPL-3.0-only
2015-02-24 13:05:19 -05:00
*/
namespace OC\Encryption\Exceptions;
2015-04-01 10:36:08 -04:00
use OCP\Encryption\Exceptions\GenericEncryptionException;
2015-02-24 13:05:19 -05:00
class EncryptionHeaderToLargeException extends GenericEncryptionException {
public function __construct() {
2015-04-01 10:36:08 -04:00
parent::__construct('max header size exceeded');
}
2015-02-24 13:05:19 -05:00
}