Stop suppressing exceptions

This commit is contained in:
Cameron Gutman
2019-01-01 23:28:41 -08:00
parent 05e4792d6f
commit 0220dd921a
3 changed files with 61 additions and 37 deletions
@@ -239,7 +239,7 @@ public class NvConnection {
return;
}
context.connListener.stageComplete(appName);
} catch (Exception e) {
} catch (XmlPullParserException | IOException e) {
e.printStackTrace();
context.connListener.displayMessage(e.getMessage());
context.connListener.stageFailed(appName, 0);