Tagged Questions
10
votes
14answers
2k views
Is there a favored idiom for mimicing Java's try/finally in C++?
Been doing Java for number of years so haven't been tracking C++. Has finally clause been added to C++ exception handling in the language definition?
Is there a favored idiom that mimics Java's ...
1
vote
2answers
184 views
Which subclass of Throwable should be caught and which shouldn't?
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 ...
0
votes
4answers
209 views
Catching Throwable in Blackberry Java: Good Idea?
I often see catch clauses for Throwable in Blackberry documentation, such as the Network API docs. My sense is that this is not generally a good practice in Java.
Is there a reason for this in ...