Tagged Questions
3
votes
4answers
78 views
Error Handling Trade-Off in Java
There are two ways of error handling:
1) Use nested If and check errors
2) Use try/catch
Here is tutorial about this. But it is said here that try/catch hurts the performance. So, it seems there is ...