Go to the documentation of this file.00001
00002
00003
00004
00005
00006
00007
00008
00009
00017 package com.generalrobotix.ui.util;
00018
00019 import java.awt.*;
00020 import javax.swing.*;
00021
00022
00026 @SuppressWarnings("serial")
00027 public class ErrorDialog extends AlertBox {
00028 public ErrorDialog(Frame owner, String caption, String message) {
00029 super(owner, caption, JOptionPane.ERROR_MESSAGE, OK_BUTTON);
00030 setTitle(MessageBundle.get("dialog.error.title"));
00031 setCaption(caption);
00032 setMessage(message);
00033 }
00034
00035 public ErrorDialog(Dialog owner, String caption, String message) {
00036 super(owner, caption, JOptionPane.ERROR_MESSAGE, OK_BUTTON);
00037 setTitle(MessageBundle.get("dialog.error.title"));
00038 setCaption(caption);
00039 setMessage(message);
00040 }
00041 }