Package com.opencloud.sentinel.multileg
Class TransactionInProgressException
- java.lang.Object
-
- java.lang.Throwable
-
- java.lang.Exception
-
- com.opencloud.sentinel.multileg.TransactionInProgressException
-
- All Implemented Interfaces:
java.io.Serializable
public class TransactionInProgressException extends java.lang.Exception
This exception is thrown by sentinel when there is already a re-invite transaction in progress on this leg or there is a re-invite message in the MessagesToSend queue which will create this condition.NOTE: SIS will throw an IllegalStateException if this is attempted.
- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description TransactionInProgressException(java.lang.String message)
Create aTransactionInProgressException
with a detail message.TransactionInProgressException(java.lang.String message, java.lang.Throwable cause)
Create aTransactionInProgressException
with a detail message and cause.
-
-
-
Constructor Detail
-
TransactionInProgressException
public TransactionInProgressException(java.lang.String message)
Create aTransactionInProgressException
with a detail message.- Parameters:
message
- the detail message.
-
TransactionInProgressException
public TransactionInProgressException(java.lang.String message, java.lang.Throwable cause)
Create aTransactionInProgressException
with a detail message and cause.- Parameters:
message
- the detail message.cause
- the reason this exception was thrown.
-
-