• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1 package javax.sip;
2 
3 public class TransactionAlreadyExistsException extends SipException {
TransactionAlreadyExistsException()4     public TransactionAlreadyExistsException(){
5     }
6 
TransactionAlreadyExistsException(String message)7     public TransactionAlreadyExistsException(String message) {
8         super(message);
9     }
10 
TransactionAlreadyExistsException(String message, Throwable cause)11     public TransactionAlreadyExistsException(String message, Throwable cause) {
12         super(message, cause);
13     }
14 }
15 
16