Here you can find the source of showError(Component father, String title, String content)
public static void showError(Component father, String title, String content)
//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*/ }