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
I have searched in the issues and found no similar issues.
What would you like to be improved?
Raw use of RuntimeException is difficult to catch.
Because other runtime Exceptions will be catched as well.
We should avoid using raw RuntimeException.
How should we improve?
The simple solution is to replace RuntimeException with RssException.
The best solution is to replace RuntimeException with specific exception.
We might need to create new Exception class for more expressive.
Are you willing to submit PR?
Yes I am willing to submit a PR!
The text was updated successfully, but these errors were encountered:
Code of Conduct
Search before asking
What would you like to be improved?
Raw use of
RuntimeException
is difficult to catch.Because other runtime Exceptions will be catched as well.
We should avoid using raw
RuntimeException
.How should we improve?
The simple solution is to replace
RuntimeException
withRssException
.The best solution is to replace
RuntimeException
with specific exception.We might need to create new Exception class for more expressive.
Are you willing to submit PR?
The text was updated successfully, but these errors were encountered: