Java JOptionPane Error showErrorBox(Component pParent, String pMessage, String pTitle)

Here you can find the source of showErrorBox(Component pParent, String pMessage, String pTitle)

Description

show Error Box

License

Apache License

Declaration

public static void showErrorBox(Component pParent, String pMessage,
            String pTitle) 

Method Source Code

//package com.java2s;
/* /*from  w  ww  .j  a v  a  2 s  .  co m*/
 * Copyright 2015 Torridity.
 *
 * 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 {
    public static void showErrorBox(Component pParent, String pMessage,
            String pTitle) {
        JOptionPane.showMessageDialog(pParent, pMessage, pTitle,
                JOptionPane.ERROR_MESSAGE);
    }
}

Related

  1. showError(String message)
  2. showError(String msg, String title)
  3. showError(Throwable e)
  4. showError(Window parent)
  5. showErrorBox(Component aParent, String aTitle, String aMessage)
  6. showErrorConfirmBox(Component pParent, String pMessage, String pTitle, String pLeftOption, String pRightOption)
  7. showErrorDialog(JFrame parent, Exception ex)
  8. showErrorMessage(Component c, Exception e)
  9. showErrorMessage(Component parent, String message)