I have been reading many posts about exceptions lately and I have a question whether unchecked exceptions should be caught. I have read that if you want your application to recover from an error you use checked exceptions. However if you can't deal with the checked exception you either wrap it into another checked exception so you can pass it to another layer; for instance you wrap an SqlException, or you throw an unchecked exception. However, should you catch unchecked exceptions? Are unchecked exceptions ideally programming errors that you don't check for? Should they just bubble up from your application?
|
|
||||
|
|
The answer is that it depends:
If the exception is unexpected, the cause of the exception is uncertain, and / or if there is no sound recovery strategy if you do catch the exception, then it is generally better to allow the exception to bubble up, and make sure that it gets reported / logged at the top level. And if the exception is an
I mean that the exception and its stack trace should be written to the application's log file so that the evidence of the problem is available for the maintainers to look at. Whether you try to explain the problem to the end user (and how you do it) is a separate issue. The "top level" may be the "main" method, a thread or runnable's "run" method ... or an uncaught exception handler. Basically it is wherever the exception eventually will "bubble up" to if it is not caught. |
||||
|
|
You should catch an exception — checked or unchecked — if you can handle it in a meaningful way to recover from the problem. You generally should not catch an exception if you don't have a good way to handle it. I've seen too much code that "handles" exceptions by doing |
|||
|
|
|
Nothing forbids you from catching runtime exceptions. The trend, nowadays, is to use more and more runtime exceptions, and less and less checked exceptions. Spring, Hibernate, and the latest Java EE specs use runtime exceptions almost exclusively. This makes the business code easier to read and less cumbersome. The runtime exceptions are generally intended to be not caught at all, or only caught at the bottom of the call stack, in the UI layer, in order to display an error message, because that's usually the only thing you can do when such an exception occurs. |
||||
|
|
|
The basic difference between the Also, Given, all the information above, if you
For more details, refer these links: - |
|||||
|
|
Choice for checked exceptions is usually: you just add it to Unchecked exceptions are a bit more tricky. In the ideal world, they should indicate programming/logic errors, and be handled pretty much like assertion failure, not caught and especially not swallowed. Some unchecked exception coming from Java standard library or other libraries should in my opinion really be checked exceptions, but are not. These are cases, where the caller should acknowledge that such exceptions may be passing through them even if they don't In general, try to avoid having unchecked exceptions thrown. Check the input, so you don't need to To be fair to Java libraries, the language was designed in the era, when IDEs didn't yet immediately complain about missing throws clauses and offer to fill them in automatically, so making them unchecked may have been justified by reducing burden on developer. But with modern tools, there's really no excuse. And then, as mentioned in other answers, there are unchecked exceptions you should not catch. |
|||
|
|
Yes and No. Depends on what exception is thrown.
You can write a
If they occur, try to solve their cause (if it' spossible). Don't |
|||||||||||||
|