mirror of
https://github.com/wger-project/flutter.git
synced 2026-02-18 23:42:00 +01:00
11 lines
167 B
Dart
11 lines
167 B
Dart
class HttpException implements Exception {
|
|
final Map<String, dynamic> errors;
|
|
|
|
HttpException(this.errors);
|
|
|
|
@override
|
|
String toString() {
|
|
return '';
|
|
}
|
|
}
|