Search in sources :

Example 1 with ErrorPresentation

use of org.jkiss.dbeaver.ui.controls.resultset.view.ErrorPresentation in project dbeaver by serge-rider.

the class ResultSetViewer method showErrorPresentation.

void showErrorPresentation(String sqlText, String message, Throwable error) {
    activePresentationDescriptor = null;
    setActivePresentation(new ErrorPresentation(sqlText, GeneralUtils.makeErrorStatus(message, error)));
    updatePresentationInToolbar();
}
Also used : ErrorPresentation(org.jkiss.dbeaver.ui.controls.resultset.view.ErrorPresentation)

Example 2 with ErrorPresentation

use of org.jkiss.dbeaver.ui.controls.resultset.view.ErrorPresentation in project dbeaver by dbeaver.

the class ResultSetViewer method showErrorPresentation.

void showErrorPresentation(String sqlText, String message, Throwable error) {
    activePresentationDescriptor = null;
    setActivePresentation(new ErrorPresentation(sqlText, GeneralUtils.makeErrorStatus(message, error)));
    updatePresentationInToolbar();
}
Also used : ErrorPresentation(org.jkiss.dbeaver.ui.controls.resultset.view.ErrorPresentation)

Aggregations

ErrorPresentation (org.jkiss.dbeaver.ui.controls.resultset.view.ErrorPresentation)2