You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Throwable is never thrown in the corresponding try block
In fact, we have no ways to detect which exception can be possibly thrown by an unknown callable. However, we could detect calls to callables inside try blocks and whitelist any exception in the catch.
The text was updated successfully, but these errors were encountered:
Currently, wrapping a callable call into a
try catch
block always results in an error:In fact, we have no ways to detect which exception can be possibly thrown by an unknown callable. However, we could detect calls to callables inside
try
blocks and whitelist any exception in the catch.The text was updated successfully, but these errors were encountered: