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