Here you can find the source of showErrorMessage(Component c, Exception e)
public static void showErrorMessage(Component c, Exception e)
//package com.java2s; import javax.swing.*; import java.awt.*; public class Main { public static void showErrorMessage(Component c, Exception e) { JOptionPane.showMessageDialog(c, "Error caught: " + e.getMessage(), "ERROR", JOptionPane.ERROR_MESSAGE); }// w w w . j a va 2s .co m }