Here you can find the source of showError(Component where, String msg)
public static void showError(Component where, String msg)
//package com.java2s; import javax.swing.*; import java.awt.*; public class Main { public static void showError(Component where, String msg) { JOptionPane.showMessageDialog(where, msg, "Error", JOptionPane.ERROR_MESSAGE); }// w w w. j av a2 s. c om }