Class AutoCommitActionDuringTransactionException
- java.lang.Object
-
- java.lang.Throwable
-
- java.lang.Exception
-
- java.lang.RuntimeException
-
- nz.co.gregs.dbvolution.exceptions.AutoCommitActionDuringTransactionException
-
- All Implemented Interfaces:
Serializable
public class AutoCommitActionDuringTransactionException extends RuntimeException
Support DBvolution at Patreon
- Author:
- Gregory Graham
- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description AutoCommitActionDuringTransactionException(String ddlMethod)
Thrown when a Data Definition Language (DDL) operation is used in a transaction.
-
Method Summary
-
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
-
Methods inherited from class java.lang.Throwable
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
-
-
-
-
Constructor Detail
-
AutoCommitActionDuringTransactionException
public AutoCommitActionDuringTransactionException(String ddlMethod)
Thrown when a Data Definition Language (DDL) operation is used in a transaction.DDL operations force a commit and are virtually always a mistake inside a transaction.
- Parameters:
ddlMethod
- ddlMethod
-
-