1
0
Fork 0
mirror of https://github.com/eclipse-cdt/cdt synced 2025-06-30 21:55:31 +02:00

Bug 313885 - [concurrency] TracingWrapperRunnable should log all Throwables not only RuntimeExceptions

This commit is contained in:
Pawel Piech 2010-05-21 18:06:58 +00:00
parent ac41db14fe
commit 7141f555ad

View file

@ -375,6 +375,9 @@ public class DefaultDsfExecutor extends ScheduledThreadPoolExecutor
// programming error.
logException(e);
throw e;
} catch (Error e) {
logException(e);
throw e;
}
}
}