1 package javax.sip; 2 3 public class TransactionDoesNotExistException extends SipException { TransactionDoesNotExistException()4 public TransactionDoesNotExistException(){ 5 } 6 TransactionDoesNotExistException(String message)7 public TransactionDoesNotExistException(String message) { 8 super(message); 9 } 10 TransactionDoesNotExistException(String message, Throwable cause)11 public TransactionDoesNotExistException(String message, Throwable cause) { 12 super(message, cause); 13 } 14 } 15 16