Class TransactionUnknownException
- java.lang.Object
-
- java.lang.Throwable
-
- java.lang.Exception
-
- java.lang.RuntimeException
-
- de.aristaflow.adept2.base.service.ADEPT2ServiceException
-
- de.aristaflow.adept2.base.service.InvalidServiceUsageException
-
- de.aristaflow.adept2.core.transactionmanager.TransactionUnknownException
-
- All Implemented Interfaces:
Serializable
public class TransactionUnknownException extends InvalidServiceUsageException
This exception indicates that an object tries to access a transaction but has not started one.- Author:
- Ulrich Kreher
- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description TransactionUnknownException()
Creates a new exception indicating that an object tries to access a transaction but has not started one.TransactionUnknownException(String msg)
Creates a new exception indicating that an object tries to access a transaction but has not started one.
-
Method Summary
-
Methods inherited from class java.lang.Throwable
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
-
-
-
-
Constructor Detail
-
TransactionUnknownException
public TransactionUnknownException()
Creates a new exception indicating that an object tries to access a transaction but has not started one.
-
TransactionUnknownException
public TransactionUnknownException(String msg)
Creates a new exception indicating that an object tries to access a transaction but has not started one.- Parameters:
msg
- A message providing more detailed information.
-
-