Here you can find the source of showErrorPane(String errorMessage, Exception e)
public static void showErrorPane(String errorMessage, Exception e)
//package com.java2s; //License from project: Open Source License import javax.swing.JOptionPane; public class Main { public static void showErrorPane(String errorMessage, Exception e) { JOptionPane.showMessageDialog(null, errorMessage + " " + e.toString(), "Error", JOptionPane.ERROR_MESSAGE); }//from w w w . j a v a2s . c o m }