cleanup / abuse system fix / prepping for a release
[mir.git] / source / Mir.java
index f3a0b79..7fdcd32 100755 (executable)
@@ -33,7 +33,7 @@ import mir.config.MirPropertiesConfiguration;
 import mir.log.LoggerWrapper;
 import mir.servlet.*;
 import mir.util.StringRoutines;
-import mir.util.ExceptionFunctions;
+import mir.util.ExceptionRoutines;
 import multex.Failure;
 
 import javax.servlet.ServletConfig;
@@ -217,7 +217,7 @@ public class Mir extends AbstractServlet {
             logger.info("EXECTIME (" + moduleName + "): " + sessionConnectTime + " ms");
           }
           catch (Throwable e) {
-            Throwable cause = ExceptionFunctions.traceCauseException(e);
+            Throwable cause = ExceptionRoutines.traceCauseException(e);
 
             if (cause instanceof ServletModuleUserExc)
               handleUserError(aRequest, aResponse, (ServletModuleUserExc) cause);
@@ -326,7 +326,7 @@ public class Mir extends AbstractServlet {
       logger.error("Error handling error: " + e.toString());
 
       try {
-        Throwable rootException = ExceptionFunctions.traceCauseException(anException);
+        Throwable rootException = ExceptionRoutines.traceCauseException(anException);
 
         PrintWriter writer = aResponse.getWriter();
         writer.println("<html><head><title>FATAL Error</title><body>");