/* 195 */ if ((i + 1 >= MAX_RETRIES) || (oldTransaction != null)) throw ex;
/* */
/* 197 */ ApplicationDeadlockException deadlock = isADE(ex);
/* 198 */ if (deadlock != null)
/* */ {
/* 200 */ if (!deadlock.retryable()) throw deadlock;
/* 201 */ this.log.debug(deadlock.getMessage() + " retrying tx " + (i + 1));
/* */ }
/* 203 */ else if (this.retryHandlers != null)
/* */ {
/* 205 */ boolean retryable = false;