diff --git a/src/helma/framework/core/RequestEvaluator.java b/src/helma/framework/core/RequestEvaluator.java index 68a203b8..932fa3ea 100644 --- a/src/helma/framework/core/RequestEvaluator.java +++ b/src/helma/framework/core/RequestEvaluator.java @@ -580,7 +580,9 @@ public final class RequestEvaluator implements Runnable { // check if we tried to process the error already, // or if this is an XML-RPC request if (error == null) { - app.errorCount += 1; + if (!(x instanceof FrameworkException)) { + app.errorCount += 1; + } // set done to false so that the error will be processed done = false;