2015-02-24 21:05:19 +03:00
|
|
|
<?php
|
2015-04-07 18:02:49 +03:00
|
|
|
/**
|
2016-07-21 18:07:57 +03:00
|
|
|
* @copyright Copyright (c) 2016, ownCloud, Inc.
|
|
|
|
*
|
2016-05-26 20:56:05 +03:00
|
|
|
* @author Björn Schießle <bjoern@schiessle.org>
|
2020-04-29 12:57:22 +03:00
|
|
|
* @author Christoph Wurst <christoph@winzerhof-wurst.at>
|
2015-04-07 18:02:49 +03:00
|
|
|
* @author Clark Tomlinson <fallen013@gmail.com>
|
2016-05-26 20:56:05 +03:00
|
|
|
* @author Lukas Reschke <lukas@statuscode.ch>
|
2015-06-25 12:43:55 +03:00
|
|
|
* @author Morris Jobke <hey@morrisjobke.de>
|
2015-04-07 18:02:49 +03:00
|
|
|
* @author Thomas Müller <thomas.mueller@tmit.eu>
|
|
|
|
*
|
2015-02-24 21:05:19 +03:00
|
|
|
* @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,
|
2019-12-03 21:57:53 +03:00
|
|
|
* along with this program. If not, see <http://www.gnu.org/licenses/>
|
2015-02-24 21:05:19 +03:00
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
2015-04-01 17:36:08 +03:00
|
|
|
namespace OCP\Encryption\Exceptions;
|
2020-04-09 12:48:10 +03:00
|
|
|
|
2015-05-27 11:37:12 +03:00
|
|
|
use OC\HintException;
|
2015-02-24 21:05:19 +03:00
|
|
|
|
2015-04-16 18:00:08 +03:00
|
|
|
/**
|
|
|
|
* Class GenericEncryptionException
|
|
|
|
*
|
|
|
|
* @package OCP\Encryption\Exceptions
|
|
|
|
* @since 8.1.0
|
|
|
|
*/
|
2015-05-27 11:37:12 +03:00
|
|
|
class GenericEncryptionException extends HintException {
|
2015-05-12 19:49:25 +03:00
|
|
|
|
2015-04-09 15:06:55 +03:00
|
|
|
/**
|
|
|
|
* @param string $message
|
2015-05-27 11:37:12 +03:00
|
|
|
* @param string $hint
|
2015-04-09 15:06:55 +03:00
|
|
|
* @param int $code
|
2017-07-19 20:44:10 +03:00
|
|
|
* @param \Exception|null $previous
|
2015-04-16 18:00:08 +03:00
|
|
|
* @since 8.1.0
|
2015-04-09 15:06:55 +03:00
|
|
|
*/
|
2015-05-27 11:37:12 +03:00
|
|
|
public function __construct($message = '', $hint = '', $code = 0, \Exception $previous = null) {
|
2015-04-01 17:36:08 +03:00
|
|
|
if (empty($message)) {
|
|
|
|
$message = 'Unspecified encryption exception';
|
|
|
|
}
|
2015-05-27 11:37:12 +03:00
|
|
|
parent::__construct($message, $hint, $code, $previous);
|
2015-04-01 17:36:08 +03:00
|
|
|
}
|
2015-02-24 21:05:19 +03:00
|
|
|
}
|