mirror of
https://github.com/eclipse-cdt/cdt
synced 2025-07-01 06:05:24 +02:00
Bug 313885 - [concurrency] TracingWrapperRunnable should log all Throwables not only RuntimeExceptions
This commit is contained in:
parent
ac41db14fe
commit
7141f555ad
1 changed files with 3 additions and 0 deletions
|
@ -375,6 +375,9 @@ public class DefaultDsfExecutor extends ScheduledThreadPoolExecutor
|
||||||
// programming error.
|
// programming error.
|
||||||
logException(e);
|
logException(e);
|
||||||
throw e;
|
throw e;
|
||||||
|
} catch (Error e) {
|
||||||
|
logException(e);
|
||||||
|
throw e;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Reference in a new issue