better error message and loading view

This commit is contained in:
2022-08-31 16:22:47 +02:00
parent 02bf3fb341
commit 395b501925
3 changed files with 22 additions and 8 deletions

View File

@ -2,7 +2,11 @@ import 'dart:async';
import 'dart:convert';
import 'package:http/http.dart' as http;
import 'package:openmediacentermobile/api/token.dart';
import 'token.dart';
class TokenException implements Exception {
String wdExpMsg() => 'Invalid token in storage!';
}
class API {
static Future<String> query(
@ -20,7 +24,7 @@ class API {
return resp.body;
} else {
return "";
throw TokenException();
}
}
}