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
Currently, any exception thrown by an adapter is propagated to upper context outside of Tornado. It means that if you intend to catch a particular exception, it may be broken as soon as you change the used adapter.
Proposal:
Catch underlying exceptions and translate them in "Tornado exceptions" (to be created)
Use @throws annotation to document this behavior and improve developer experience with IDE
The text was updated successfully, but these errors were encountered:
Currently, any exception thrown by an adapter is propagated to upper context outside of Tornado. It means that if you intend to catch a particular exception, it may be broken as soon as you change the used adapter.
Proposal:
@throws
annotation to document this behavior and improve developer experience with IDEThe text was updated successfully, but these errors were encountered: