You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

GenericEncryptionException.php 1.5KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051
  1. <?php
  2. /**
  3. * @copyright Copyright (c) 2016, ownCloud, Inc.
  4. *
  5. * @author Björn Schießle <bjoern@schiessle.org>
  6. * @author Christoph Wurst <christoph@winzerhof-wurst.at>
  7. * @author Clark Tomlinson <fallen013@gmail.com>
  8. * @author Lukas Reschke <lukas@statuscode.ch>
  9. * @author Morris Jobke <hey@morrisjobke.de>
  10. * @author Thomas Müller <thomas.mueller@tmit.eu>
  11. *
  12. * @license AGPL-3.0
  13. *
  14. * This code is free software: you can redistribute it and/or modify
  15. * it under the terms of the GNU Affero General Public License, version 3,
  16. * as published by the Free Software Foundation.
  17. *
  18. * This program is distributed in the hope that it will be useful,
  19. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  20. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  21. * GNU Affero General Public License for more details.
  22. *
  23. * You should have received a copy of the GNU Affero General Public License, version 3,
  24. * along with this program. If not, see <http://www.gnu.org/licenses/>
  25. *
  26. */
  27. namespace OCP\Encryption\Exceptions;
  28. use OCP\HintException;
  29. /**
  30. * Class GenericEncryptionException
  31. *
  32. * @since 8.1.0
  33. */
  34. class GenericEncryptionException extends HintException {
  35. /**
  36. * @param string $message
  37. * @param string $hint
  38. * @param int $code
  39. * @param \Exception|null $previous
  40. * @since 8.1.0
  41. */
  42. public function __construct($message = '', $hint = '', $code = 0, \Exception $previous = null) {
  43. if (empty($message)) {
  44. $message = 'Unspecified encryption exception';
  45. }
  46. parent::__construct($message, $hint, $code, $previous);
  47. }
  48. }