HintException.php 397 B

1234567891011121314151617181920
  1. <?php
  2. declare(strict_types=1);
  3. /**
  4. * SPDX-FileCopyrightText: 2021 Nextcloud GmbH and Nextcloud contributors
  5. * SPDX-License-Identifier: AGPL-3.0-or-later
  6. */
  7. namespace OC;
  8. /**
  9. * Class HintException
  10. *
  11. * An Exception class with the intention to be presented to the end user
  12. *
  13. * @package OC
  14. * @deprecated 23.0.0 Use \OCP\HintException
  15. */
  16. class HintException extends \OCP\HintException {
  17. }