Re: [DISCUSS] Checked Exceptions

2013-10-15 Thread Laszlo Hornyak
Hi, In general I like the idea. Some input for the exception handling topic: - there are tons of places where Throwable, RuntimeException and other generic exceptions are caught. It should be clear which exception is caught where. Throwable probalby should not be cought :) - there other tons of ca

Re: [DISCUSS] Checked Exceptions

2013-10-14 Thread Kelven Yang
On 10/14/13 10:29 AM, "Darren Shepherd" wrote: >I'm going through and updating all the code to use what I had proposed >with Transaction management. This has uncovered more fun issues >around exception handling. Well, not an issue per say, but just >pointed out the ridiculous amount of checke

[DISCUSS] Checked Exceptions

2013-10-14 Thread Darren Shepherd
I'm going through and updating all the code to use what I had proposed with Transaction management. This has uncovered more fun issues around exception handling. Well, not an issue per say, but just pointed out the ridiculous amount of checked exceptions in method signatures. I generally follow