Thunderbird

This commit is contained in:
An Bui 2024-10-03 15:02:33 +07:00
parent e5f4935df9
commit 96f29f8e40
16 changed files with 165 additions and 346 deletions

View file

@ -49,6 +49,12 @@ public class AppUpdater extends AsyncTask<String, String, String> {
sb.append(response);
}
return sb.toString();
} catch (ExceptionInInitializerError e) {
e.printStackTrace();
return "Error on getting data: " + e.getMessage();
} catch (NoClassDefFoundError e) {
e.printStackTrace();
return "Error on getting data: " + e.getMessage();
} catch (Exception e) {
e.printStackTrace();
return "Error on getting data: " + e.getMessage();