nextcloud/lib/private/encryption/exceptions/encryptionheaderkeyexistsexception.php

38 lines
1.2 KiB
PHP
Raw Normal View History

<?php
/**
2016-07-22 03:47:47 -04:00
* @copyright Copyright (c) 2016, ownCloud, Inc.
*
* @author Björn Schießle <bjoern@schiessle.org>
* @author Lukas Reschke <lukas@statuscode.ch>
* @author Thomas Müller <thomas.mueller@tmit.eu>
*
* @license AGPL-3.0
*
* This code is free software: you can redistribute it and/or modify
* it under the terms of the GNU Affero General Public License, version 3,
* as published by the Free Software Foundation.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU Affero General Public License for more details.
*
* You should have received a copy of the GNU Affero General Public License, version 3,
* along with this program. If not, see <http://www.gnu.org/licenses/>
*
*/
namespace OC\Encryption\Exceptions;
2015-04-01 10:36:08 -04:00
use OCP\Encryption\Exceptions\GenericEncryptionException;
2015-04-01 10:36:08 -04:00
class EncryptionHeaderKeyExistsException extends GenericEncryptionException {
2015-04-01 10:36:08 -04:00
/**
* @param string $key
*/
public function __construct($key) {
2016-06-20 15:52:40 -04:00
parent::__construct('header key "'. $key . '" already reserved by Nextcloud');
2015-04-01 10:36:08 -04:00
}
}