InsufficientDataForMeaningfulAnswerException.php 751 B

1234567891011121314151617181920212223242526
  1. <?php
  2. /**
  3. * SPDX-FileCopyrightText: 2017-2024 Nextcloud GmbH and Nextcloud contributors
  4. * SPDX-FileCopyrightText: 2016 ownCloud, Inc.
  5. * SPDX-License-Identifier: AGPL-3.0-only
  6. */
  7. namespace OCA\Files_External\Lib;
  8. use OCP\Files\StorageNotAvailableException;
  9. /**
  10. * Authentication mechanism or backend has insufficient data
  11. */
  12. class InsufficientDataForMeaningfulAnswerException extends StorageNotAvailableException {
  13. /**
  14. * StorageNotAvailableException constructor.
  15. *
  16. * @param string $message
  17. * @param int $code
  18. * @param \Exception|null $previous
  19. * @since 6.0.0
  20. */
  21. public function __construct($message = '', $code = self::STATUS_INDETERMINATE, ?\Exception $previous = null) {
  22. parent::__construct($message, $code, $previous);
  23. }
  24. }