Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 99bd69b8 authored by Vincent Bourgmayer's avatar Vincent Bourgmayer
Browse files

refactor: move custom exception to bottom of SystemAppsUpdatesRepository.kt

parent 62892489
Loading
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -33,8 +33,6 @@ import javax.inject.Inject
import javax.inject.Singleton
import timber.log.Timber

private class UnsupportedAndroidApiException(message: String) : RuntimeException(message)

@Singleton
class SystemAppsUpdatesRepository @Inject constructor(
    @ApplicationContext private val context: Context,
@@ -246,3 +244,5 @@ class SystemAppsUpdatesRepository @Inject constructor(
        return updateList
    }
}

private class UnsupportedAndroidApiException(message: String) : RuntimeException(message)
 No newline at end of file