Commit f810db87 authored by Gaston Dombiak's avatar Gaston Dombiak Committed by gato

Catch any throwable exception instead of Exceptions. JM-963

git-svn-id: http://svn.igniterealtime.org/svn/repos/wildfire/trunk@7044 b35dd754-fafc-0310-a699-88a17e54d16e
parent 2682cf2b
......@@ -235,7 +235,7 @@ public class InterceptorManager {
throw e;
}
}
catch (Exception e) {
catch (Throwable e) {
Log.error("Error in interceptor", e);
}
}
......@@ -262,7 +262,7 @@ public class InterceptorManager {
throw e;
}
}
catch (Exception e) {
catch (Throwable e) {
Log.error("Error in interceptor", e);
}
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment