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/apps/dav
diff options
context:
space:
mode:
authorCôme Chilliet <come.chilliet@nextcloud.com>2022-03-14 11:57:28 +0300
committerCôme Chilliet <come.chilliet@nextcloud.com>2022-03-14 16:34:16 +0300
commit8f97f722ecb98dff6226d2b2572bfe1ae49869a6 (patch)
tree9ff1020f1228883da20ab9faba8ce96f68251145 /apps/dav
parent1973b2fb758165a845580570d723e0beeafb9ec8 (diff)
Extends UserMigrationException in CalendarMigratorException
Signed-off-by: Côme Chilliet <come.chilliet@nextcloud.com>
Diffstat (limited to 'apps/dav')
-rw-r--r--apps/dav/lib/UserMigration/CalendarMigratorException.php4
1 files changed, 2 insertions, 2 deletions
diff --git a/apps/dav/lib/UserMigration/CalendarMigratorException.php b/apps/dav/lib/UserMigration/CalendarMigratorException.php
index 91bac58ffac..3b4f8f89232 100644
--- a/apps/dav/lib/UserMigration/CalendarMigratorException.php
+++ b/apps/dav/lib/UserMigration/CalendarMigratorException.php
@@ -26,7 +26,7 @@ declare(strict_types=1);
namespace OCA\DAV\UserMigration;
-use Exception;
+use OCP\UserMigration\UserMigrationException;
-class CalendarMigratorException extends Exception {
+class CalendarMigratorException extends UserMigrationException {
}