GenericEncryptionException.php 1.5 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152
  1. <?php
  2. /**
  3. * @copyright Copyright (c) 2016, ownCloud, Inc.
  4. *
  5. * @author Björn Schießle <bjoern@schiessle.org>
  6. * @author Clark Tomlinson <fallen013@gmail.com>
  7. * @author Lukas Reschke <lukas@statuscode.ch>
  8. * @author Morris Jobke <hey@morrisjobke.de>
  9. * @author Thomas Müller <thomas.mueller@tmit.eu>
  10. *
  11. * @license AGPL-3.0
  12. *
  13. * This code is free software: you can redistribute it and/or modify
  14. * it under the terms of the GNU Affero General Public License, version 3,
  15. * as published by the Free Software Foundation.
  16. *
  17. * This program is distributed in the hope that it will be useful,
  18. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  19. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  20. * GNU Affero General Public License for more details.
  21. *
  22. * You should have received a copy of the GNU Affero General Public License, version 3,
  23. * along with this program. If not, see <http://www.gnu.org/licenses/>
  24. *
  25. */
  26. namespace OCP\Encryption\Exceptions;
  27. use OC\HintException;
  28. /**
  29. * Class GenericEncryptionException
  30. *
  31. * @package OCP\Encryption\Exceptions
  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. }