ID |
Summary |
Committer |
Date |
eb2deab5 |
Merge pull request #498 from Pieter12345/master |
ladycailin |
7 months ago |
8f6aea50 |
Make HandleUncaughtException method no longer throw for FATAL result
- Make HandleUncaughtException(ConfigRuntimeException e, Environment env, Reaction r) no longer throw an exception when Reaction is FATAL. Instead, handle it the same as REPORT.
- Revert return value change from FATAL to REPORT in GetRaction(...). |
pieter12345 |
7 months ago |
f9e7a075 |
CheckStyle: Fix violations |
pieter12345 |
7 months ago |
39dc2c27 |
Fix set_uncaught_exception_handler closure return behaviour
Before this commit, the return value of the closure passed to set_uncaught_exception_handler would result in:
- true -> Suppress exception.
- null -> Use default uncaught exception handler.
- false -> Use default uncaught exception handler and print the java stacktrace to the cause.
- exception in closure -> Use default uncaught exception handler for the exception in the closure and suppress the first exception.
The behaviour set by this commit is:
- true -> Suppress exception.
- null -> Use default uncaught exception handler.
- false -> Use default uncaught exception handler.
- exception in closure -> Use default uncaught exception handler to print both exceptions. |
pieter12345 |
7 months ago |
ab3587c3 |
Fix possible mistake |
pieter12345 |
7 months ago |