We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
It should propably throw all the specific exception that it has to throw. Encountered to a bug where catching all exceptions ate NullPointerException.
The text was updated successfully, but these errors were encountered:
The signature for Callable#call is V call() throws Exception. Thus we basically need to catch of throw Exception, even though it's kinda ugly.
V call() throws Exception
However, we should take care to never silently swallow the exceptions, but to always at least log the exception.
Sorry, something went wrong.
Well I tried to change it to specific exception types and it didn't complain about it...
No branches or pull requests
It should propably throw all the specific exception that it has to throw.
Encountered to a bug where catching all exceptions ate NullPointerException.
The text was updated successfully, but these errors were encountered: