Package org.dbunit.operation
Class ExclusiveTransactionException
java.lang.Object
java.lang.Throwable
java.lang.Exception
org.dbunit.DatabaseUnitException
org.dbunit.operation.ExclusiveTransactionException
- All Implemented Interfaces:
Serializable
Signals that a transaction could not be started because another transaction
is already active.
- Since:
- Feb 21, 2002
- Version:
- $Revision$
- Author:
- Manuel Laflamme
- See Also:
-
Constructor Summary
ConstructorsConstructorDescriptionConstructs anExclusiveTransactionExceptionwith no detail message and no encapsulated exception.Constructs anExclusiveTransactionExceptionwith the specified detail message and no encapsulated exception.Constructs anExclusiveTransactionExceptionwith the specified detail message and encapsulated exception.Constructs anExclusiveTransactionExceptionwith the encapsulated exception and use its message as detail message. -
Method Summary
Methods inherited from class org.dbunit.DatabaseUnitException
getExceptionMethods inherited from class java.lang.Throwable
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
-
Constructor Details
-
ExclusiveTransactionException
public ExclusiveTransactionException()Constructs anExclusiveTransactionExceptionwith no detail message and no encapsulated exception. -
ExclusiveTransactionException
Constructs anExclusiveTransactionExceptionwith the specified detail message and no encapsulated exception.- Parameters:
msg- the detail message.
-
ExclusiveTransactionException
Constructs anExclusiveTransactionExceptionwith the specified detail message and encapsulated exception.- Parameters:
msg- the detail message.e- the encapsulated exception.
-
ExclusiveTransactionException
Constructs anExclusiveTransactionExceptionwith the encapsulated exception and use its message as detail message.- Parameters:
e- the encapsulated exception.
-