Java JOptionPane Error displayErrorMessage(String msg, Throwable t)

Here you can find the source of displayErrorMessage(String msg, Throwable t)

Description

display Error Message

License

Apache License

Declaration

public static void displayErrorMessage(String msg, Throwable t) 

Method Source Code

//package com.java2s;
/*//from w  w w . j  a  v  a  2  s. c o  m
 *    Copyright 2010-2012 University of Toronto
 *
 *    Licensed under the Apache License, Version 2.0 (the "License");
 *    you may not use this file except in compliance with the License.
 *    You may obtain a copy of the License at
 *
 *        http://www.apache.org/licenses/LICENSE-2.0
 *
 *    Unless required by applicable law or agreed to in writing, software
 *    distributed under the License is distributed on an "AS IS" BASIS,
 *    WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 *    See the License for the specific language governing permissions and
 *    limitations under the License.
 */

import java.awt.KeyboardFocusManager;
import java.awt.Window;

import javax.swing.JOptionPane;

public class Main {
    public static void displayErrorMessage(String msg, Throwable t) {
        JOptionPane.showMessageDialog(getFrontWindow(), msg, "Database Error", JOptionPane.ERROR_MESSAGE);
    }

    /**
     * For purposes of parenting dialogs, here's frontmost window.  Generally, it's the
     * MedSavant main window, but in some cases it could be a dialog.
     */
    public static Window getFrontWindow() {
        return KeyboardFocusManager.getCurrentKeyboardFocusManager().getActiveWindow();
    }
}

Related

  1. displayError(Throwable e)
  2. displayErrorMessage(Component component, Throwable t)
  3. displayErrorMessage(Component parent, String message)
  4. displayErrorMessage(Component parentComponent, String message, String windowTitle)
  5. displayErrorMessage(final Throwable throwable, final Component parentComponent)
  6. displayErrors(Component parent, List errors)
  7. errMsg(Component owner, String msg, Exception e)
  8. errMsg(final Component owner, final String msg, final Throwable e)
  9. errMsg(final String msg)