[OT] Re: A try catch and return question

2007-10-01 Thread Cesar Arevalo
ROTECTED]> To: Struts Users Mailing List Sent: Monday, October 1, 2007 1:01:23 PM Subject: A try catch and return question I have a method having the following structure: public Object myMethod() { try { // some code return theReturnedObject, }catch{ // some code

A try catch and return question

2007-10-01 Thread Zhang, Larry \(L.\)
I have a method having the following structure: public Object myMethod() { try { // some code return theReturnedObject, }catch{ // some code } finally { // some code } } Please let me know if the following version of code