Display the exception message when a stage fails

This commit is contained in:
Cameron Gutman 2014-01-09 23:40:57 -06:00
parent 3201fac36c
commit 616945a963

View File

@ -245,6 +245,7 @@ public class NvConnection {
} }
} catch (Exception e) { } catch (Exception e) {
e.printStackTrace(); e.printStackTrace();
listener.displayMessage(e.getMessage());
success = false; success = false;
} }