123456789101112131415161718192021222324 |
- <?php
- declare(strict_types=1);
- namespace OC\AppFramework\Utility;
- use OCP\AppFramework\QueryException;
- use Psr\Container\NotFoundExceptionInterface;
- class QueryNotFoundException extends QueryException implements NotFoundExceptionInterface {
- }
|