Improve error mapping

This commit is contained in:
Benoit Marty 2025-11-07 10:04:48 +01:00
parent e12726f405
commit 98792c9562
4 changed files with 16 additions and 6 deletions

View file

@ -14,6 +14,7 @@ sealed class AuthenticationException(message: String?) : Exception(message) {
class InvalidServerName(message: String?) : AuthenticationException(message)
class SlidingSyncVersion(message: String?) : AuthenticationException(message)
class ServerUnreachable(message: String?) : AuthenticationException(message)
class Oidc(message: String?) : AuthenticationException(message)
class Generic(message: String?) : AuthenticationException(message)
}