From be81a579eef4485384942fc8d34a39fd45dc632d Mon Sep 17 00:00:00 2001 From: wisberg Date: Wed, 30 Apr 2003 02:32:09 +0000 Subject: [PATCH] slight rewording of error dialog, and correct URL. --- ajde/src/org/aspectj/ajde/ui/swing/ErrorDialog.java | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/ajde/src/org/aspectj/ajde/ui/swing/ErrorDialog.java b/ajde/src/org/aspectj/ajde/ui/swing/ErrorDialog.java index 5acaddde2..4d39dada6 100644 --- a/ajde/src/org/aspectj/ajde/ui/swing/ErrorDialog.java +++ b/ajde/src/org/aspectj/ajde/ui/swing/ErrorDialog.java @@ -29,7 +29,7 @@ import javax.swing.JScrollPane; import javax.swing.JTextArea; import javax.swing.border.Border; -class ErrorDialog extends JDialog { +public class ErrorDialog extends JDialog { JPanel top_panel = new JPanel(); BorderLayout borderLayout2 = new BorderLayout(); JPanel button_panel = new JPanel(); @@ -49,8 +49,8 @@ class ErrorDialog extends JDialog { jbInit(); String exceptionName = ""; if (throwable != null) exceptionName = throwable.getClass().getName(); - this.error_label1.setText("A " + exceptionName + " exception has occured."); - this.error_label2.setText("Please copy the following report and submit it at http://aspectj.org/bugs"); + this.error_label1.setText("Exception: " + exceptionName); + this.error_label2.setText("If you can't fix it, please submit a bug to http://dev.eclipse.org/bugs"); this.stackTrace_textArea.setText("Message: " + message + '\n' + "Stack trace: " + details); this.setSize(420, 330); this.setLocationRelativeTo(owner); -- 2.39.5