From: wisberg Date: Wed, 30 Apr 2003 02:32:09 +0000 (+0000) Subject: slight rewording of error dialog, and correct URL. X-Git-Tag: V1_1_0_RC2~116 X-Git-Url: https://source.dussan.org/?a=commitdiff_plain;h=be81a579eef4485384942fc8d34a39fd45dc632d;p=aspectj.git slight rewording of error dialog, and correct URL. --- 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);