Here you can find the source of showErrorMessage(String message)
static void showErrorMessage(String message)
//package com.java2s; //License from project: Apache License import javax.swing.JOptionPane; public class Main { static void showErrorMessage(String message) { showErrorMessage(message, "Error"); }// w w w .j ava 2s . com static void showErrorMessage(String message, String title) { JOptionPane.showMessageDialog(null, message, title, JOptionPane.ERROR_MESSAGE); } }