diff options
author | wisberg <wisberg> | 2002-12-18 18:49:18 +0000 |
---|---|---|
committer | wisberg <wisberg> | 2002-12-18 18:49:18 +0000 |
commit | 01efac720424b0c2272afee80a7fb4833ad0111d (patch) | |
tree | 621ff820eb9d6e09e59de275b3aa689132004ca7 /org.aspectj.ajdt.core | |
parent | 360ec841b0bb5c98c831a169bf5bdc2c4216b0ab (diff) | |
download | aspectj-01efac720424b0c2272afee80a7fb4833ad0111d.tar.gz aspectj-01efac720424b0c2272afee80a7fb4833ad0111d.zip |
changing exception message
Diffstat (limited to 'org.aspectj.ajdt.core')
-rw-r--r-- | org.aspectj.ajdt.core/src/org/aspectj/tools/ajc/Main.java | 22 |
1 files changed, 9 insertions, 13 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 4c8e684e8..ad43d4b0b 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 @@ -323,19 +323,15 @@ public class Main { public static final String THROWN_PREFIX = "Exception thrown from AspectJ "+ Version.text + LangUtil.EOL + ""+ LangUtil.EOL - + "Please email to us as follows:" + LangUtil.EOL - + " to: jitterbug@aspectj.org" + LangUtil.EOL - + " subject: top stack trace File:line, e.g., \"SomeFile.java:243\"" + LangUtil.EOL - + " message: copy the entire stack trace." + LangUtil.EOL - + "" + LangUtil.EOL - + "Your message can also request follow-up or provide a workaround." + LangUtil.EOL - + "To make the bug a priority, please include a test program." + LangUtil.EOL - + "" + LangUtil.EOL - + "You may search for duplicate bugs (i.e., known workarounds):" + LangUtil.EOL - + "" + LangUtil.EOL - + "http://aspectj.org/bugs" + LangUtil.EOL - + "http://aspectj.org/bugs/incoming?expression=SomeFile.java:243" + 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 + + "" + 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 + + "To make the bug a priority, please include a test program" + LangUtil.EOL + + "that can reproduce this exception." + LangUtil.EOL; public static final IMessageHandler VERBOSE = new MessagePrinter(true); |