Methods Summary |
---|
public static oracle.toplink.essentials.exceptions.ConcurrencyException | maxTriesLockOnBuildObjectExceded(java.lang.Thread cacheKeyThread, java.lang.Thread currentThread)
Object[] args = { cacheKeyThread, currentThread, CR };
ConcurrencyException concurrencyException = new ConcurrencyException(ExceptionMessageGenerator.buildMessage(ConcurrencyException.class, MAX_TRIES_EXCEDED_FOR_LOCK_ON_MERGE, args));
concurrencyException.setErrorCode(MAX_TRIES_EXCEDED_FOR_LOCK_ON_BUILD_OBJECT);
return concurrencyException;
|
public static oracle.toplink.essentials.exceptions.ConcurrencyException | maxTriesLockOnCloneExceded(java.lang.Object objectToClone)
Object[] args = { objectToClone, CR };
ConcurrencyException concurrencyException = new ConcurrencyException(ExceptionMessageGenerator.buildMessage(ConcurrencyException.class, MAX_TRIES_EXCEDED_FOR_LOCK_ON_CLONE, args));
concurrencyException.setErrorCode(MAX_TRIES_EXCEDED_FOR_LOCK_ON_CLONE);
return concurrencyException;
|
public static oracle.toplink.essentials.exceptions.ConcurrencyException | maxTriesLockOnMergeExceded(java.lang.Object objectToClone)
Object[] args = { objectToClone, CR };
ConcurrencyException concurrencyException = new ConcurrencyException(ExceptionMessageGenerator.buildMessage(ConcurrencyException.class, MAX_TRIES_EXCEDED_FOR_LOCK_ON_MERGE, args));
concurrencyException.setErrorCode(MAX_TRIES_EXCEDED_FOR_LOCK_ON_MERGE);
return concurrencyException;
|
public static oracle.toplink.essentials.exceptions.ConcurrencyException | sequencingMultithreadThruConnection(java.lang.String accessor)
Object[] args = { accessor };
ConcurrencyException concurrencyException = new ConcurrencyException(ExceptionMessageGenerator.buildMessage(ConcurrencyException.class, SEQUENCING_MULTITHREAD_THRU_CONNECTION, args));
concurrencyException.setErrorCode(SEQUENCING_MULTITHREAD_THRU_CONNECTION);
return concurrencyException;
|
public static oracle.toplink.essentials.exceptions.ConcurrencyException | signalAttemptedBeforeWait()
Object[] args = { CR };
ConcurrencyException concurrencyException = new ConcurrencyException(ExceptionMessageGenerator.buildMessage(ConcurrencyException.class, SIGNAL_ATTEMPTED_BEFORE_WAIT, args));
concurrencyException.setErrorCode(SIGNAL_ATTEMPTED_BEFORE_WAIT);
return concurrencyException;
|
public static oracle.toplink.essentials.exceptions.ConcurrencyException | waitFailureOnClientSession(java.lang.InterruptedException exception)
Object[] args = { };
ConcurrencyException concurrencyException = new ConcurrencyException(ExceptionMessageGenerator.buildMessage(ConcurrencyException.class, WAIT_FAILURE_CLIENT, args), exception);
concurrencyException.setErrorCode(WAIT_FAILURE_CLIENT);
return concurrencyException;
|
public static oracle.toplink.essentials.exceptions.ConcurrencyException | waitFailureOnSequencingForDatabaseSession(java.lang.InterruptedException exception)
Object[] args = { };
ConcurrencyException concurrencyException = new ConcurrencyException(ExceptionMessageGenerator.buildMessage(ConcurrencyException.class, WAIT_FAILURE_SEQ_DATABASE_SESSION, args), exception);
concurrencyException.setErrorCode(WAIT_FAILURE_SEQ_DATABASE_SESSION);
return concurrencyException;
|
public static oracle.toplink.essentials.exceptions.ConcurrencyException | waitFailureOnServerSession(java.lang.InterruptedException exception)
Object[] args = { };
ConcurrencyException concurrencyException = new ConcurrencyException(ExceptionMessageGenerator.buildMessage(ConcurrencyException.class, WAIT_FAILURE_SERVER, args), exception);
concurrencyException.setErrorCode(WAIT_FAILURE_SERVER);
return concurrencyException;
|
public static oracle.toplink.essentials.exceptions.ConcurrencyException | waitWasInterrupted(java.lang.String message)
Object[] args = { CR, message };
ConcurrencyException concurrencyException = new ConcurrencyException(ExceptionMessageGenerator.buildMessage(ConcurrencyException.class, WAIT_WAS_INTERRUPTED, args));
concurrencyException.setErrorCode(WAIT_WAS_INTERRUPTED);
return concurrencyException;
|