Here you can find the source of showErrorMessage(Component parent, String str)
public static void showErrorMessage(Component parent, String str)
//package com.java2s; //License from project: Open Source License import java.awt.*; import javax.swing.*; public class Main { /**//from www . j av a 2 s. c o m * Show error message. */ public static void showErrorMessage(Component parent, String str) { JOptionPane.showMessageDialog(parent, str, "Error!", JOptionPane.ERROR_MESSAGE); } }