exception in finally block
I am getting exception in finally block so how to catch this
the code is
public synchronized Object getValueAt(int row, int col)
{
try{
return attData[row][col];
}
catch(Exception e)
{
EMCLog.logError("EMCTableModel_getValueAt",e+e.getMessage());
}
finally{
return attData[row][col];
}
}
Can anyone give me solution to how to catch exception in finally block?
Thanks in advance

