use of org.jkiss.dbeaver.ui.dialogs.ViewExceptionDialog in project dbeaver by serge-rider.
the class StatusDetailsDialog method openWarning.
private void openWarning() {
TableItem[] selection = warnTable.getSelection();
if (selection.length == 0) {
return;
}
Throwable error = (Throwable) selection[0].getData();
ViewExceptionDialog veDialog = new ViewExceptionDialog(getShell(), error);
veDialog.open();
}
Aggregations