QueryNotFoundException.php 663 B

123456789101112131415161718192021222324
  1. <?php
  2. declare(strict_types=1);
  3. /**
  4. * SPDX-FileCopyrightText: 2023 Nextcloud GmbH and Nextcloud contributors
  5. * SPDX-License-Identifier: AGPL-3.0-or-later
  6. */
  7. namespace OC\AppFramework\Utility;
  8. use OCP\AppFramework\QueryException;
  9. use Psr\Container\NotFoundExceptionInterface;
  10. /**
  11. * Private implementation of the `Psr\Container\NotFoundExceptionInterface`
  12. *
  13. * QueryNotFoundException is a simple wrapper over the `QueryException`
  14. * to fulfill the PSR Container interface.
  15. *
  16. * You should not catch this class directly but the `NotFoundExceptionInterface`.
  17. */
  18. class QueryNotFoundException extends QueryException implements NotFoundExceptionInterface {
  19. }