All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.odmg.TransactionNotInProgressException Maven / Gradle / Ivy

Go to download

ObJectRelationalBridge (OJB) is an Object/Relational mapping tool that allows transparent persistence for Java Objects against relational databases.

The newest version!
package org.odmg;



/**

 * This exception is thrown when attempting to perform an operation that

 * must be performed when there is a transaction is in progress, but no

 * such transaction is in progress.

 * @author	David Jordan (as Java Editor of the Object Data Management Group)

 * @version ODMG 3.0

 * @see ODMGRuntimeException

 */



public class TransactionNotInProgressException extends ODMGRuntimeException

{

    /**

     * Constructs an instance of the exception.

     */

    public TransactionNotInProgressException()

    {

        super();

    }



    /**

     * Constructs an instance of the exception with the provided message.

     * @param msg	A message that describes the exception.

     */

    public TransactionNotInProgressException(String msg)

    {

        super(msg);

    }

}





© 2015 - 2025 Weber Informatics LLC | Privacy Policy