api integration

This commit is contained in:
2025-06-02 10:29:32 +05:30
parent 7c9e089c62
commit 805aa5e015
289 changed files with 40017 additions and 1082 deletions

View File

@@ -11,8 +11,12 @@ class NetworkException extends AppException {
NetworkException(super.message);
}
class AuthException extends AppException {
AuthException(super.message);
class AuthException implements Exception{
final String message;
AuthException(this.message);
@override
String toString() => message;
}
class UnexpectedException extends AppException {