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:
authorCôme Chilliet <come.chilliet@nextcloud.com>2022-03-14 11:57:28 +0300
committerCôme Chilliet <come.chilliet@nextcloud.com>2022-03-14 11:57:28 +0300
commitcc2d8cc7404537dedc9d5cb0569086f901ff107d (patch)
tree63986ac9383afe0567d3259a37560227277ada1d
parent1d5d05dff7aacea1677c136996cc8b4efe8fdeb7 (diff)
Extends UserMigrationException in CalendarMigratorExceptionenh/improve-user_migration-api
Signed-off-by: Côme Chilliet <come.chilliet@nextcloud.com>
-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 {
}