Fix warning (comment out temporary dead code)

This commit is contained in:
Benoit Marty 2023-07-20 15:32:19 +02:00
parent 089fc8b4dd
commit a88ac632f6

View file

@ -22,5 +22,6 @@ sealed class AuthenticationException(message: String) : Exception(message) {
class SlidingSyncNotAvailable(message: String) : AuthenticationException(message)
class SessionMissing(message: String) : AuthenticationException(message)
class Generic(message: String) : AuthenticationException(message)
class OidcError(type: String, message: String) : AuthenticationException(message)
// TODO Oidc
// class OidcError(type: String, message: String) : AuthenticationException(message)
}