Docjar: A Java Source and Docuemnt Enginecom.*    java.*    javax.*    org.*    all    new    plug-in

Quick Search    Search Deep

Source code: org/odmg/TransactionNotInProgressException.java


1   package org.odmg;
2   
3   /**
4    * This exception is thrown when attempting to perform an operation that
5    * must be performed when there is a transaction is in progress, but no
6    * such transaction is in progress.
7    * @author  David Jordan (as Java Editor of the Object Data Management Group)
8    * @version ODMG 3.0
9    * @see ODMGRuntimeException
10   */
11  
12  public class TransactionNotInProgressException extends ODMGRuntimeException
13  {
14      /**
15       * Constructs an instance of the exception.
16       */
17      public TransactionNotInProgressException()
18      {
19          super();
20      }
21  
22      /**
23       * Constructs an instance of the exception with the provided message.
24       * @param msg  A message that describes the exception.
25       */
26      public TransactionNotInProgressException(String msg)
27      {
28          super(msg);
29      }
30  }