Tagged Questions

1
vote
4answers
397 views

Best practices for catching Throwable in Java

Sometimes, you just have to catch Throwable, e.g. when writing a dispatcher queue that dispatches generic items and needs to recover from any errors (said dispatcher logs all caught exceptions, but …
13
votes
9answers
360 views

Differences betweeen Exception and Error

I'm trying to learn more about basic Java and the different types of Throwables, can someone let me know the differences between Exceptions and Errors?
3
votes
15answers
917 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 …
7
votes
9answers
1k views

When should Throwable be used instead of new Exception?

Given: Throwable is Exception's superclass. When I read tests on writing your own 'exceptions', I see examples of Throwable being used in the catch block and other text's show new Exception() being …
1
vote
6answers
305 views

Java: What is the preferred Throwable to use in a private utility class constructor?

Effective Java (Second Edition), Item 4, discusses using private constructors to enforce noninstantiability. Here's the code sample from the book: public final class UtilityClass { private …