Consider these 2 pieces of code (you can assume execeptionObj is of type Object, but we know it's an instance of Throwable):
1)
logger.log(Level.ERROR, (Throwable) exceptionObj,
((Throwable) exceptionObj).getMessage());
2)
Throwable t = new Throwable((Throwable)exceptionObj);
logger.log(Level.ERROR, t, t.getMessage());
During a code review for a project I'm working on, one reviewer is saying that the first way is not as efficient as the second way because it involves 2 casts. I just wondered what you thought. It seems like creating a new instance would involve some overhead as well.

Throwable t = new Throwable((Throwable) exceptionObj);to compile, but it will create a new (additional) StackTrace that will get logged (includingexceptionObj). This additional StackTrace is not really needed, or? – Carlos Heuberger Mar 4 '10 at 10:24exceptionObjto a Throwable at all - to work, it has to be a Throwable subclass anyway. Creating a new instance is different from casting, and there's no need to do it here either. Worrying about 'efficiency' in this case (unless it's called thousands of times in a loop) is premature optimization. This code review sounds like the blind leading the blind. – Nate Mar 4 '10 at 12:05