use of org.controlsfx.dialog.ExceptionDialog in project jabref by JabRef.
the class FXDialogService method showErrorDialogAndWait.
@Override
public void showErrorDialogAndWait(String message, Throwable exception) {
ExceptionDialog exceptionDialog = new ExceptionDialog(exception);
exceptionDialog.setHeaderText(message);
exceptionDialog.showAndWait();
}
Aggregations