Files
Obtainium/lib/custom_errors.dart
Imran Remtulla dd193d62f2 Update checking improvements (#38)
Still no auto retry for rate-limit. Instead, rate-limit errors are ignored and the unchecked Apps have to wait until the next cycle. Even this needs more testing before release.
2022-09-27 23:20:39 -04:00

9 lines
200 B
Dart

class RateLimitError {
late int remainingMinutes;
RateLimitError(this.remainingMinutes);
@override
String toString() =>
'Rate limit reached - try again in $remainingMinutes minutes';
}