Here you can find the source of popupError(JFrame parent, String title, String text)
public static void popupError(JFrame parent, String title, String text)
//package com.java2s; // Use is subject to license terms. import javax.swing.JFrame; import javax.swing.JOptionPane; public class Main { /** Popup an Error message dialog */ public static void popupError(JFrame parent, String title, String text) { JOptionPane.showMessageDialog(parent, text, title, JOptionPane.ERROR_MESSAGE); }/*from w w w .j a v a2 s . c om*/ }