/* 483 */ for (int i = this.toCancel.size() - 1; i >= 0; i--)
/* */ {
/* 485 */ Delivery del = (Delivery)this.toCancel.get(i);
/* */ try
/* */ {
/* 489 */ del.cancel();
/* */ }
/* */ catch (Throwable t)
/* */ {
/* 493 */ TransactionRepository.log.error("Failed to cancel delivery", t);
/* 494 */ throw new TransactionException(t.getMessage(), t);