diff options
author | Côme Chilliet <come.chilliet@nextcloud.com> | 2022-03-14 09:57:28 +0100 |
---|---|---|
committer | Côme Chilliet <come.chilliet@nextcloud.com> | 2022-03-14 14:34:16 +0100 |
commit | 8f97f722ecb98dff6226d2b2572bfe1ae49869a6 (patch) | |
tree | 9ff1020f1228883da20ab9faba8ce96f68251145 /apps | |
parent | 1973b2fb758165a845580570d723e0beeafb9ec8 (diff) | |
download | nextcloud-server-8f97f722ecb98dff6226d2b2572bfe1ae49869a6.tar.gz nextcloud-server-8f97f722ecb98dff6226d2b2572bfe1ae49869a6.zip |
Extends UserMigrationException in CalendarMigratorException
Signed-off-by: Côme Chilliet <come.chilliet@nextcloud.com>
Diffstat (limited to 'apps')
-rw-r--r-- | apps/dav/lib/UserMigration/CalendarMigratorException.php | 4 |
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 { } |