If an exception is thrown in the constructor of an object, it's not much different than finding an exception in a method call, except that you can guarantee your object didn't get constructed
NewObject obj = null;
try {
obj = new NewObject() {
} catch (Throwable t) {
// obj is null.
}
Whether you can recover from such an exception is heavily dependent on the exception thrown. Checked exceptions are expected, yet infrequent errors; typically they are the easiest to recover from. Unchecked exceptions deal with things like divide by zero (where having to catch every possible throw would be cumbersome). Errors are situations where the program is likely to fail due to standard assumptions about normal JVM operation not holding (like the ability to allocate more memory).
It is possible to recover from certain JVM errors; however, the errors you wish to recover from and the means to recover need to be carefully planned. Typically one sees attempts to recover from JVM errors when dealing with low memory conditions (pseudo-java code follows)
Runtime runtime = Runtime.getRuntime();
while (true) {
Cache myCache = new SomeCache();
try {
Message message = messages.getMessage();
if (!(cache.hasKey(message))) {
Result result = messageProcessor.getResult(message);
cache.put(message, result);
}
message.getReplyChannel().send(cache.get(message));
} catch (OutOfMemoryException e) {
myCache.clear();
runtime.gc();
messages.putBack(message);
}
}
The value of such a solution depends heavily on the rest of the system design. Assuming the "cache" has a limited maximum size, this might still be useful if another section of the program starts hogging memory. The key is to make sure your memory freeing operations depend on already allocated objects which will not put more memory demands on the system as it's trying to free memory.
Socket's constructors throw checked exceptions, e.g. – Mark Peters Mar 11 '11 at 15:37throws org.opensaml.xml.ConfigurationException, but if that exception does get thrown, trying to continue will just net me other exceptions further down the road. – Michael Kjörling Mar 11 '11 at 15:49