diff options
author | Arthur Schiwon <blizzz@arthur-schiwon.de> | 2022-07-06 16:14:51 +0200 |
---|---|---|
committer | Arthur Schiwon <blizzz@arthur-schiwon.de> | 2022-07-06 16:14:51 +0200 |
commit | ec096051091b3978de86294b008e80e0ed361e48 (patch) | |
tree | 316ba3a812c216fe355a15b20f8dc648a760ff67 /apps/dav/lib/DAV | |
parent | dfbfe5ac9d07c899b256a2772b2d9f3b0ced5b04 (diff) | |
download | nextcloud-server-ec096051091b3978de86294b008e80e0ed361e48.tar.gz nextcloud-server-ec096051091b3978de86294b008e80e0ed361e48.zip |
catch any exception for transaction control
Signed-off-by: Arthur Schiwon <blizzz@arthur-schiwon.de>
Diffstat (limited to 'apps/dav/lib/DAV')
-rw-r--r-- | apps/dav/lib/DAV/CustomPropertiesBackend.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/dav/lib/DAV/CustomPropertiesBackend.php b/apps/dav/lib/DAV/CustomPropertiesBackend.php index dd90ec56d66..0110990a408 100644 --- a/apps/dav/lib/DAV/CustomPropertiesBackend.php +++ b/apps/dav/lib/DAV/CustomPropertiesBackend.php @@ -24,7 +24,7 @@ */ namespace OCA\DAV\DAV; -use OCP\DB\Exception; +use Exception; use OCP\DB\QueryBuilder\IQueryBuilder; use OCP\IDBConnection; use OCP\IUser; |