Package org.springframework.transaction
Class NoTransactionException
java.lang.Object
java.lang.Throwable
java.lang.Exception
java.lang.RuntimeException
org.springframework.core.NestedRuntimeException
org.springframework.transaction.TransactionException
org.springframework.transaction.TransactionUsageException
org.springframework.transaction.NoTransactionException
- All Implemented Interfaces:
- Serializable
Exception thrown when an operation is attempted that
 relies on an existing transaction (such as setting
 rollback status) and there is no existing transaction.
 This represents an illegal usage of the transaction API.
- Since:
- 17.03.2003
- Author:
- Rod Johnson
- See Also:
- 
Constructor SummaryConstructorsConstructorDescriptionConstructor for NoTransactionException.NoTransactionException(String msg, Throwable cause) Constructor for NoTransactionException.
- 
Method SummaryMethods inherited from class org.springframework.core.NestedRuntimeExceptioncontains, getMostSpecificCause, getRootCauseMethods inherited from class java.lang.ThrowableaddSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
- 
Constructor Details- 
NoTransactionExceptionConstructor for NoTransactionException.- Parameters:
- msg- the detail message
 
- 
NoTransactionExceptionConstructor for NoTransactionException.- Parameters:
- msg- the detail message
- cause- the root cause from the transaction API in use
 
 
-