Interface de connexion avec connexion réussie au serveur

This commit is contained in:
DahoudG
2024-08-27 16:52:39 +00:00
parent 59331ddd7d
commit e233f9f392
9 changed files with 216 additions and 165 deletions

View File

@@ -1,3 +1,12 @@
class ServerException implements Exception {}
class CacheException implements Exception {}
class AuthenticationException implements Exception {
final String message;
AuthenticationException(this.message);
@override
String toString() => 'AuthenticationException: $message';
}