Improve error mapping

This commit is contained in:
Benoit Marty 2025-11-07 10:04:48 +01:00
parent a39b675cc1
commit 9e8fe55a90
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)
}