I have a futures task that is doing some I/O operations over the socket to a server. When I use the get() method of the task to retrieve the result, I am getting ExecutionException, but with no cause i.e. getCause() returns null. In what scenario does this happen? I mean, I'm getting this exception since the task threw some exception right , but how can it go missing?

link|improve this question

62% accept rate
1  
could it be that the causing exception is thrown on the server and class of the exception is not known on client? – MarianP Oct 24 '11 at 16:58
2) are both e.getCause() and e.getMessage() null/empty? – MarianP Oct 24 '11 at 17:00
1  
3) one more possible cause? : thushw.blogspot.com/2010/07/… – MarianP Oct 24 '11 at 17:06
1 -> i can say that the call didnt go to the server from the server logs . – theneoindian Oct 26 '11 at 4:30
feedback

1 Answer

up vote 1 down vote accepted
throw null;

is legal in Java, but I've never seen that in the wild.

link|improve this answer
In that case the getCause() would return a NullPointerException. – palacsint Oct 27 '11 at 22:00
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.