aboutsummaryrefslogtreecommitdiffstats
path: root/org.aspectj.ajdt.core/src
diff options
context:
space:
mode:
authorwisberg <wisberg>2003-01-21 20:18:54 +0000
committerwisberg <wisberg>2003-01-21 20:18:54 +0000
commite9abb7f372ae1874384ddb1f9443af023db6f232 (patch)
treeeade9c886b13fbe8b8954913f513817e5d57eb4b /org.aspectj.ajdt.core/src
parentd06855e27624ffd2d1b8b14e47e43a3889871b43 (diff)
downloadaspectj-e9abb7f372ae1874384ddb1f9443af023db6f232.tar.gz
aspectj-e9abb7f372ae1874384ddb1f9443af023db6f232.zip
updated THROWN_PREFIX with better URLs for bug db.
Diffstat (limited to 'org.aspectj.ajdt.core/src')
-rw-r--r--org.aspectj.ajdt.core/src/org/aspectj/tools/ajc/Main.java7
1 files changed, 4 insertions, 3 deletions
diff --git a/org.aspectj.ajdt.core/src/org/aspectj/tools/ajc/Main.java b/org.aspectj.ajdt.core/src/org/aspectj/tools/ajc/Main.java
index 1e6170116..216bdf091 100644
--- a/org.aspectj.ajdt.core/src/org/aspectj/tools/ajc/Main.java
+++ b/org.aspectj.ajdt.core/src/org/aspectj/tools/ajc/Main.java
@@ -40,16 +40,17 @@ import java.util.List;
*/
public class Main {
/** Header used when rendering exceptions for users */
- public static final String THROWN_PREFIX // XXX change as needed before each release
+ public static final String THROWN_PREFIX
= "Exception thrown from AspectJ "+ Version.text + LangUtil.EOL
+ ""+ LangUtil.EOL
- + "This might be logged as a bug already -- see the bug database at" + LangUtil.EOL
- + " http://dev.eclipse.org (product: AspectJ, component: compiler)" + LangUtil.EOL
+ + "This might be logged as a bug already -- find current bugs at" + LangUtil.EOL
+ + " http://bugs.eclipse.org/bugs/buglist.cgi?product=AspectJ&component=Compiler" + LangUtil.EOL
+ "" + LangUtil.EOL
+ "Bugs for exceptions thrown have titles File:line from the top stack, " + LangUtil.EOL
+ "e.g., \"SomeFile.java:243\"" + LangUtil.EOL
+ "" + LangUtil.EOL
+ "If you don't find the exception below in a bug, please add a new bug" + LangUtil.EOL
+ + "at http://bugs.eclipse.org/bugs/enter_bug.cgi?product=AspectJ" + LangUtil.EOL
+ "To make the bug a priority, please include a test program" + LangUtil.EOL
+ "that can reproduce this exception." + LangUtil.EOL;