feet/lib/api/exceptions.dart

10 lines
245 B
Dart
Raw Permalink Normal View History

2022-12-29 16:11:01 +00:00
part of fever_api;
class UnauthenticatedException implements Exception {
final int statusCode;
const UnauthenticatedException(this.statusCode);
@override
String toString() => 'Unauthenticated: Fever API returned status $statusCode';
}