030c3eb428
* app updated * readme updated * rename base folder * update chatty's readme * move apps to packages dir * update repo overview Co-authored-by: diegoveloper <diego.velasquez.lopez@gmail.com>
11 lines
157 B
Dart
11 lines
157 B
Dart
enum AuthErrorCode {
|
|
not_auth,
|
|
not_chat_user,
|
|
}
|
|
|
|
class AuthException implements Exception {
|
|
AuthException(this.error);
|
|
|
|
final AuthErrorCode error;
|
|
}
|