2014-12-13 13:28:20 -05:00
|
|
|
<?php
|
2020-07-13 05:18:14 -04:00
|
|
|
|
|
|
|
|
declare(strict_types=1);
|
2014-12-13 13:28:20 -05:00
|
|
|
/**
|
2024-05-23 03:26:56 -04:00
|
|
|
* SPDX-FileCopyrightText: 2016-2024 Nextcloud GmbH and Nextcloud contributors
|
|
|
|
|
* SPDX-FileCopyrightText: 2016 ownCloud, Inc.
|
|
|
|
|
* SPDX-License-Identifier: AGPL-3.0-only
|
2014-12-13 13:28:20 -05:00
|
|
|
*/
|
|
|
|
|
namespace OCP\AppFramework;
|
|
|
|
|
|
|
|
|
|
use Exception;
|
2020-07-13 05:18:14 -04:00
|
|
|
use Psr\Container\ContainerExceptionInterface;
|
2014-12-13 13:28:20 -05:00
|
|
|
|
2015-04-16 11:00:08 -04:00
|
|
|
/**
|
|
|
|
|
* Class QueryException
|
|
|
|
|
*
|
2023-01-27 21:41:24 -05:00
|
|
|
* The class extends `ContainerExceptionInterface` since 20.0.0
|
2020-07-13 05:18:14 -04:00
|
|
|
*
|
2015-04-16 11:00:08 -04:00
|
|
|
* @since 8.1.0
|
2020-07-13 05:18:14 -04:00
|
|
|
* @deprecated 20.0.0 catch \Psr\Container\ContainerExceptionInterface
|
2015-04-16 11:00:08 -04:00
|
|
|
*/
|
2020-07-13 05:18:14 -04:00
|
|
|
class QueryException extends Exception implements ContainerExceptionInterface {
|
2020-04-10 08:19:56 -04:00
|
|
|
}
|