Java JOptionPane Error showError(Component father, String title, String content)

Here you can find the source of showError(Component father, String title, String content)

Description

show Error

License

Open Source License

Declaration

public static void showError(Component father, String title, String content) 

Method Source Code


//package com.java2s;
//License from project: Open Source License 

import java.awt.Component;
import javax.swing.JOptionPane;

public class Main {
    public static void showError(Component father, String title, String content) {
        JOptionPane.showMessageDialog(father, content, title, JOptionPane.ERROR_MESSAGE);
    }/* w w  w  . j  av  a  2  s .  co m*/
}

Related

  1. popupError(String s, Throwable e)
  2. printErrorMessageAndExit(String message)
  3. showAudioNotAvailableError(String macId)
  4. showBlockedErrorMsg(final Container parent, final String message, final boolean exit)
  5. showError(Component component, String title, String message)
  6. showError(Component parent, String message)
  7. showError(Component parent, String message)
  8. showError(Component parentComponent, Exception e)
  9. showError(Component where, String msg)