Class ExclusiveTransactionException

All Implemented Interfaces:
Serializable

public class ExclusiveTransactionException extends DatabaseUnitException
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 Details

    • ExclusiveTransactionException

      public ExclusiveTransactionException()
      Constructs an ExclusiveTransactionException with no detail message and no encapsulated exception.
    • ExclusiveTransactionException

      public ExclusiveTransactionException(String msg)
      Constructs an ExclusiveTransactionException with the specified detail message and no encapsulated exception.
      Parameters:
      msg - the detail message.
    • ExclusiveTransactionException

      public ExclusiveTransactionException(String msg, Throwable e)
      Constructs an ExclusiveTransactionException with the specified detail message and encapsulated exception.
      Parameters:
      msg - the detail message.
      e - the encapsulated exception.
    • ExclusiveTransactionException

      public ExclusiveTransactionException(Throwable e)
      Constructs an ExclusiveTransactionException with the encapsulated exception and use its message as detail message.
      Parameters:
      e - the encapsulated exception.