Package org.springframework.transaction
Class NestedTransactionNotSupportedException
java.lang.Object
java.lang.Throwable
java.lang.Exception
java.lang.RuntimeException
org.springframework.core.NestedRuntimeException
org.springframework.transaction.TransactionException
org.springframework.transaction.CannotCreateTransactionException
org.springframework.transaction.NestedTransactionNotSupportedException
- All Implemented Interfaces:
Serializable
Exception thrown when attempting to work with a nested transaction
but nested transactions are not supported by the underlying backend.
- Since:
- 1.1
- Author:
- Juergen Hoeller
- See Also:
-
Constructor Summary
ConstructorDescriptionConstructor for NestedTransactionNotSupportedException.NestedTransactionNotSupportedException
(String msg, Throwable cause) Constructor for NestedTransactionNotSupportedException. -
Method Summary
Methods inherited from class org.springframework.core.NestedRuntimeException
contains, getMostSpecificCause, getRootCause
Methods inherited from class java.lang.Throwable
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
-
Constructor Details
-
NestedTransactionNotSupportedException
Constructor for NestedTransactionNotSupportedException.- Parameters:
msg
- the detail message
-
NestedTransactionNotSupportedException
Constructor for NestedTransactionNotSupportedException.- Parameters:
msg
- the detail messagecause
- the root cause from the transaction API in use
-