Show full exception stack trace when a bootstrap import fails

This commit is contained in:
CalDescent 2021-10-06 19:32:49 +01:00
parent 81bf79e9d3
commit c82293342f

View File

@ -335,7 +335,7 @@ public class Bootstrap {
this.importFromPath(path);
} catch (InterruptedException | DataException | IOException e) {
throw new DataException(String.format("Unable to import bootstrap: %s", e.getMessage()));
throw new DataException("Unable to import bootstrap", e);
}
finally {
if (path != null) {