Class NestedTransactionNotSupportedException
- java.lang.Object
-
- java.lang.Throwable
-
- java.lang.Exception
-
- java.lang.RuntimeException
-
- io.micronaut.transaction.exceptions.TransactionException
-
- io.micronaut.transaction.exceptions.CannotCreateTransactionException
-
- io.micronaut.transaction.exceptions.NestedTransactionNotSupportedException
-
- All Implemented Interfaces:
java.io.Serializable
public class NestedTransactionNotSupportedException extends CannotCreateTransactionException
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:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description NestedTransactionNotSupportedException(java.lang.String msg)
Constructor for NestedTransactionNotSupportedException.NestedTransactionNotSupportedException(java.lang.String msg, java.lang.Throwable cause)
Constructor for NestedTransactionNotSupportedException.
-
-
-
Constructor Detail
-
NestedTransactionNotSupportedException
public NestedTransactionNotSupportedException(java.lang.String msg)
Constructor for NestedTransactionNotSupportedException.- Parameters:
msg
- the detail message
-
NestedTransactionNotSupportedException
public NestedTransactionNotSupportedException(java.lang.String msg, java.lang.Throwable cause)
Constructor for NestedTransactionNotSupportedException.- Parameters:
msg
- the detail messagecause
- the root cause from the transaction API in use
-
-