|
|
От: | dshe | |
| Дата: | 21.02.05 07:25 | ||
| Оценка: | |||
SQLException exception = null;
try {
// . . .
}
catch(SQLException e) {
TraceManager.dumpObject(order);
exception = new SQLException(e.getMessage());
}
finally {
// . . .
}
if(null != exception)
throw exception; try {
// . . .
}
catch(SQLException e) {
TraceManager.dumpObject(order);
throw e;
}
finally {
// . . .
}