FileDocCategorySizeDatePackage
TransactionInProgressException.javaAPI DocGlassfish v2 API3126Fri May 04 22:36:16 BST 2007javax.jms

TransactionInProgressException

public class TransactionInProgressException extends JMSException

This exception is thrown when an operation is invalid because a transaction is in progress. For instance, an attempt to call Session.commit when a session is part of a distributed transaction should throw a TransactionInProgressException.

version
26 August 1998
author
Rahul Sharma

Fields Summary
Constructors Summary
public TransactionInProgressException(String reason, String errorCode)
Constructs a TransactionInProgressException with the specified reason and error code.

param
reason a description of the exception
param
errorCode a string specifying the vendor-specific error code

    super(reason, errorCode);
  
public TransactionInProgressException(String reason)
Constructs a TransactionInProgressException with the specified reason. The error code defaults to null.

param
reason a description of the exception

    super(reason);
  
Methods Summary