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
path: root/lib
diff options
context:
space:
mode:
authorChristoph Wurst <christoph@winzerhof-wurst.at>2021-07-28 15:39:00 +0300
committerChristoph Wurst <christoph@winzerhof-wurst.at>2021-07-28 15:39:00 +0300
commit16d04755cfaf3c449b40a2d0c01c5bed6b289ca8 (patch)
tree7cf30936ca2c8bb867a2d7765da35c27eaa8cc8c /lib
parentfb224dd02cdd367cb61ef59a1d2b1c1a0a2ae83c (diff)
Fix missing exception class import
Regression of https://github.com/nextcloud/server/pull/27121 Signed-off-by: Christoph Wurst <christoph@winzerhof-wurst.at>
Diffstat (limited to 'lib')
-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;