()
| 100 | public void exceptionOccurred(final Exception ex) { |
| 101 | Platform.runLater(new Runnable() { |
| 102 | @Override |
| 103 | public void run() { |
| 104 | logger.error("Error opening the license file", ex); |
| 105 | FxUtils.showErrorAlert(translationBundle.getString("LicenseFileError"), ex.toString(), getClass().getResourceAsStream(SharedVariables.ICON_URL)); |
| 106 | } |
| 107 | }); |
| 108 | |
| 109 | } |
nothing calls this directly
no test coverage detected