Class OracleTransactionPriorityException
java.lang.Object
java.lang.Throwable
java.lang.Exception
java.lang.RuntimeException
io.micronaut.transaction.exceptions.TransactionException
io.micronaut.transaction.exceptions.OracleTransactionPriorityException
- All Implemented Interfaces:
Serializable
Thrown when Oracle automatically rolls back a transaction because it was
blocking a transaction with a higher priority.
Oracle reports this condition with ORA-63300 while the statement that caused the rollback is executing and with ORA-63302 for subsequent statements until the session acknowledges the rollback.
- Since:
- 5.2
- See Also:
-
Constructor Summary
ConstructorsConstructorDescriptionOracleTransactionPriorityException(String message) OracleTransactionPriorityException(String message, Throwable cause) -
Method Summary
Methods inherited from class Throwable
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
-
Constructor Details
-
OracleTransactionPriorityException
- Parameters:
message- The detail message
-
OracleTransactionPriorityException
-