Java JOptionPane Error showErrorMessage(Component parent, String str)

Here you can find the source of showErrorMessage(Component parent, String str)

Description

Display error message.

License

Apache License

Declaration

public final static void showErrorMessage(Component parent, String str) 

Method Source Code


//package com.java2s;
/*//from w  w  w  .j a v  a  2s  .c  o m
 * Copyright 2004 The Apache Software Foundation
 *
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 *
 *     http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 */

import java.awt.Component;

import javax.swing.JOptionPane;

public class Main {
    /**
     * Display error message.
     */
    public final static void showErrorMessage(Component parent, String str) {
        JOptionPane.showMessageDialog(parent, str, "Error!", JOptionPane.ERROR_MESSAGE);
    }
}

Related

  1. showErrorConfirmBox(Component pParent, String pMessage, String pTitle, String pLeftOption, String pRightOption)
  2. showErrorDialog(JFrame parent, Exception ex)
  3. showErrorMessage(Component c, Exception e)
  4. showErrorMessage(Component parent, String message)
  5. showErrorMessage(Component parent, String str)
  6. showErrorMessage(Component parent, Throwable error)
  7. showErrorMessage(Component parentComponent, String message, String title)
  8. showErrorMessage(Component theParent, String theMessage)
  9. showErrorMessage(final JComponent parent, final String message, final String title)