FileDocCategorySizeDatePackage
TransactionAlreadyExistsException.javaAPI DocphoneME MR2 API (J2ME)1652Wed May 02 18:00:42 BST 2007gov.nist.siplite

TransactionAlreadyExistsException

public class TransactionAlreadyExistsException extends javax.microedition.sip.SipException
Transaction already exists exception.

Fields Summary
Constructors Summary
public TransactionAlreadyExistsException()
Default constructor.

        super("Too many listeners!", SipException.GENERAL_ERROR);
    
public TransactionAlreadyExistsException(String cause)
Constructor with cause.

param
cause the reason message for this exception

        super(cause, SipException.GENERAL_ERROR);
    
Methods Summary