I know it's not possibile throw exception and return a value in the same method, but i need to do this in somehow. I was thinking to use finally block to throw the exception and after return the value. Something like:
public Type myMethod() {
try{
//some elaborations
return result;
} catch(MyException myException) {
//do something
return result;
} finally {
if(myException != null) {
throw myException ;
}
}
Is possible something like this, or how can i achieve this?
EDIT: Or can i split in different methods?
Short answer yes. Create a class with 2 data types exception and return value.