Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nextcloud/server.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChristoph Wurst <ChristophWurst@users.noreply.github.com>2021-07-28 16:49:53 +0300
committerGitHub <noreply@github.com>2021-07-28 16:49:53 +0300
commit9d163ece64373b87db14bb2b875f35b91226c0d7 (patch)
treee01530fb08bae29edb5284a42881709b10d7d578
parenta02b6690fee4dd0ce6695f11e33b24baae1617cc (diff)
parent16d04755cfaf3c449b40a2d0c01c5bed6b289ca8 (diff)
Merge pull request #28214 from nextcloud/fix/missing-qbmapper-exception-import
Fix missing exception class import
-rw-r--r--lib/public/AppFramework/Db/QBMapper.php1
1 files changed, 1 insertions, 0 deletions
diff --git a/lib/public/AppFramework/Db/QBMapper.php b/lib/public/AppFramework/Db/QBMapper.php
index d9cd513e5e9..c9379e2b79c 100644
--- a/lib/public/AppFramework/Db/QBMapper.php
+++ b/lib/public/AppFramework/Db/QBMapper.php
@@ -31,6 +31,7 @@ declare(strict_types=1);
namespace OCP\AppFramework\Db;
use Doctrine\DBAL\Exception\UniqueConstraintViolationException;
+use OCP\DB\Exception;
use OCP\DB\QueryBuilder\IQueryBuilder;
use OCP\IDBConnection;