Java JOptionPane Message showInvalidJarPathMessage(String jarPath)

Here you can find the source of showInvalidJarPathMessage(String jarPath)

Description

show Invalid Jar Path Message

License

Open Source License

Declaration

private static void showInvalidJarPathMessage(String jarPath) 

Method Source Code

//package com.java2s;
//License from project: Open Source License 

import javax.swing.JOptionPane;

public class Main {
    private static void showInvalidJarPathMessage(String jarPath) {
        String message = "Unable to restart cmanager. Settings could not be applied.\n" + "Expected path: "
                + jarPath;/*from  w  w w .  j  a  va  2s  . com*/
        JOptionPane.showMessageDialog(null, message, "jar path", JOptionPane.ERROR_MESSAGE);
    }
}

Related

  1. showExceptionMessage(Exception e)
  2. showExceptionMessage(Exception e)
  3. showInput(Component parent, String message, String initValue)
  4. showInput(String message)
  5. showInputInteger(String message)
  6. showLog(int type, String title, String message)
  7. showMessage(Component c, String message, String title)
  8. showMessage(Component c, String msg)
  9. showMessage(Component component, String message)