aboutsummaryrefslogtreecommitdiffstats
path: root/docs/teaching/exercises/tests
Commit message (Expand)AuthorAgeFilesLines
* Upgrade license from CPLv1/EPLv1 to EPLv2Alexander Kriegisch2021-06-0417-34/+34
* update license to EPLacolyer2006-06-0117-34/+34
* dealing with incomplete Test renaming to CoreTestehilsdal2004-11-1116-16/+16
* revised with info from OOPSLA 2004:ehilsdal2004-11-101-1/+1
* mostly final editsehilsdal2003-08-282-0/+77
* made everything inherit from Test againehilsdal2003-08-2812-66/+86
* removed unnecessary constructors and untabifiedehilsdal2003-08-2813-79/+8
* updated section 2ehilsdal2003-08-288-148/+74
* revised section 4 (untested)jhugunin2003-08-276-38/+4
* untabifiedehilsdal2003-08-2718-289/+289
* Addendum to the original contribution from PARC. Three presentations: jhugunin2003-08-0118-0/+968
ion> Nextcloud server, a safe home for all your data: https://github.com/nextcloud/serverwww-data
aboutsummaryrefslogtreecommitdiffstats
path: root/lib/private/Encryption/Exceptions/EncryptionHeaderKeyExistsException.php
blob: bb55e298ffa86bfe26acacc259faf37d5f0df2f0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
<?php
/**
 * @copyright Copyright (c) 2016, ownCloud, Inc.
 *
 * @author Björn Schießle <bjoern@schiessle.org>
 * @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;

use OCP\Encryption\Exceptions\GenericEncryptionException;

class EncryptionHeaderKeyExistsException extends GenericEncryptionException {

	/**
	 * @param string $key
	 */
	public function __construct($key) {
		parent::__construct('header key "'. $key . '" already reserved by ownCloud');
	}
}