Fix missing exception class import

Regression of https://github.com/nextcloud/server/pull/27121

Signed-off-by: Christoph Wurst <christoph@winzerhof-wurst.at>
This commit is contained in:
Christoph Wurst 2021-07-28 14:39:00 +02:00
parent fb224dd02c
commit 16d04755cf
No known key found for this signature in database
GPG key ID: CC42AC2A7F0E56D8

View file

@ -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;