1
0

QueryException.php 571 B

1234567891011121314151617181920212223
  1. <?php
  2. declare(strict_types=1);
  3. /**
  4. * SPDX-FileCopyrightText: 2016-2024 Nextcloud GmbH and Nextcloud contributors
  5. * SPDX-FileCopyrightText: 2016 ownCloud, Inc.
  6. * SPDX-License-Identifier: AGPL-3.0-only
  7. */
  8. namespace OCP\AppFramework;
  9. use Exception;
  10. use Psr\Container\ContainerExceptionInterface;
  11. /**
  12. * Class QueryException
  13. *
  14. * The class extends `ContainerExceptionInterface` since 20.0.0
  15. *
  16. * @since 8.1.0
  17. * @deprecated 20.0.0 catch \Psr\Container\ContainerExceptionInterface
  18. */
  19. class QueryException extends Exception implements ContainerExceptionInterface {
  20. }