[Mulgara-svn] r447 - branches/nw-interface/src/jar/query/java/org/mulgara/query/operation

pag at mulgara.org pag at mulgara.org
Wed Sep 19 21:10:38 UTC 2007


Author: pag
Date: 2007-09-19 16:10:37 -0500 (Wed, 19 Sep 2007)
New Revision: 447

Modified:
   branches/nw-interface/src/jar/query/java/org/mulgara/query/operation/ExecuteScript.java
Log:
Updated a missed reference to LexerException to the new MulgaraLexerException

Modified: branches/nw-interface/src/jar/query/java/org/mulgara/query/operation/ExecuteScript.java
===================================================================
--- branches/nw-interface/src/jar/query/java/org/mulgara/query/operation/ExecuteScript.java	2007-09-19 20:53:46 UTC (rev 446)
+++ branches/nw-interface/src/jar/query/java/org/mulgara/query/operation/ExecuteScript.java	2007-09-19 21:10:37 UTC (rev 447)
@@ -17,7 +17,7 @@
 
 import org.apache.log4j.Logger;
 import org.mulgara.connection.Connection;
-import org.mulgara.itql.lexer.LexerException;
+import org.mulgara.parser.MulgaraLexerException;
 import org.mulgara.parser.Interpreter;
 import org.mulgara.parser.MulgaraParserException;
 
@@ -94,7 +94,7 @@
     } catch (MulgaraParserException pe) {
       setResultMessage("Syntax error in script (line " + line + "): " + pe.getMessage());
       logger.warn("Unable to execute script - " + script + "\n" + pe.getMessage());
-    } catch (LexerException le) {
+    } catch (MulgaraLexerException le) {
       setResultMessage("Syntax error in script (line " + line + "): " + le.getMessage());
       logger.warn("Unable to execute script - " + script + "\n" + le.getMessage());
     }




More information about the Mulgara-svn mailing list