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