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