API doc says never catch Throwable subclass Error which signifies abnormal behavior. Does it implies that the segregation between Error and Exception is to tell programmers that which subclass should be caught and which shouldn't ? Or there is more to it ?
|
feedback
|
|
In general, This is vitally important as it is easy to let errors (and runtime exceptions) propagate up the call stack in such a way that they are never logged (e.g. using
I would then say that
I would usually recommend failing-fast on these as well but this is a grey area; perhaps you don't check user input before passing it to the server -hardly worth crashing your app over! Checked | ||||
|
feedback
|
|
Yes, I think your analysis is correct here - you are not supposed to catch The only reason to catch Also it might be a good idea to distinguish between | |||
|
feedback
|