Here you can find the source of errMsg(String msg)
Parameter | Description |
---|---|
msg | a parameter |
public static void errMsg(String msg)
//package com.java2s; //License from project: Open Source License import javax.swing.JOptionPane; public class Main { /**// w w w .ja v a2 s . c o m * Error message dialog * * @param msg */ public static void errMsg(String msg) { // Show it in a message box JOptionPane.showMessageDialog(null, msg, "Error", JOptionPane.ERROR_MESSAGE); System.out.println(msg); } }