]> source.dussan.org Git - aspectj.git/commitdiff
Expanded error message to make it clear that it is coming from parsing.
authormkersten <mkersten>
Sun, 1 Jun 2003 03:58:12 +0000 (03:58 +0000)
committermkersten <mkersten>
Sun, 1 Jun 2003 03:58:12 +0000 (03:58 +0000)
org.aspectj.ajdt.core/src/org/aspectj/ajdt/ajc/BuildArgParser.java
util/src/org/aspectj/util/ConfigParser.java

index c5dd98dea55a2eb28fbc1da12b076c4b1a816d54..415d0a977335649633eb7ebfe2787281885c7b12 100644 (file)
@@ -474,7 +474,7 @@ public class BuildArgParser extends Main {
         }
 
         public void showError(String message) {
-            MessageUtil.error(handler, message);
+            MessageUtil.error(handler, CONFIG_MSG + message);
         }
         
                protected void showWarning(String message) {
index dab133510c4a246eef1e633432f81a1f22458e1f..ae14e1f6fa3072f974b2e133561faea960b619b8 100644 (file)
@@ -22,7 +22,8 @@ public class ConfigParser {
     Location location;
     protected List files = new LinkedList();
     private boolean fileParsed = false;
-
+    protected static String CONFIG_MSG = "build config error: ";  
+    
     public List getFiles() { return files; }
 
     public void parseCommandLine(String[] argsArray) throws ParseException {
@@ -36,7 +37,7 @@ public class ConfigParser {
 
     public void parseConfigFile(File configFile) throws ParseException {
         if (fileParsed == true) {
-            throw new ParseException("The file has already been parsed.", null);
+            throw new ParseException(CONFIG_MSG + "The file has already been parsed.", null);
         } else {
             parseConfigFileHelper(configFile);
         }
@@ -145,11 +146,11 @@ public class ConfigParser {
         if (location != null) {
             message += " at " + location.toString();
         }
-        System.err.println(message);
+        System.err.println(CONFIG_MSG + message);
     }
 
     protected void showError(String message) {
-        throw new ParseException(message, location);
+        throw new ParseException(CONFIG_MSG + message, location);
     }
 
     void parseArgs(LinkedList args) {