fbmobile/lib/core/enums/error_code.dart
Varakh b55e932204
All checks were successful
continuous-integration/drone/push Build is passing
Added proper linting #noissue
2023-01-04 21:17:54 +01:00

16 lines
256 B
Dart

/// Enums for error codes
enum ErrorCode {
/// A generic error
generalError,
/// Errors related to connections
socketError,
socketTimeout,
/// A REST error (response code wasn't 200 or 204)
restError,
/// Custom errors
invalidApiKey
}