Introduced in 0.21.1
An exception was re-thrown (re-raised) without the use of function reraise().
Using raise ex (inside a try..with|ex block) to re-raise an exception is not ideal, as it loses valuable stacktrace information from the original exception.
Use reraise() instead of raise ex.
{
"favourReRaise": {
"enabled": true
}
}