cleanup / abuse system fix / prepping for a release
[mir.git] / source / mir / util / xml / XMLSAXParserProvider.java
index c5ee60a..d47723c 100755 (executable)
@@ -2,7 +2,7 @@ package mir.util.xml;
 
 import java.util.Map;
 
-import mir.util.ExceptionFunctions;
+import mir.util.ExceptionRoutines;
 
 import org.xml.sax.InputSource;
 import org.xml.sax.Locator;
@@ -36,7 +36,7 @@ class XMLSAXParserProvider implements XMLParserEngine.XMLParserProvider {
       parser.parse(new InputSource(aReader), new SAXHandler(aReceiver));
     }
     catch (org.xml.sax.SAXException e) {
-      Throwable t = ExceptionFunctions.traceCauseException(e);
+      Throwable t = ExceptionRoutines.traceCauseException(e);
 
       if (t instanceof XMLParserExc) {
         throw (XMLParserExc) t;