01: /**
02: * ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
03: * Unpublished - rights reserved under the Copyright Laws of the United States.
04: * Copyright © 2003 Sun Microsystems, Inc. All rights reserved.
05: * Copyright © 2005 BEA Systems, Inc. All rights reserved.
06: *
07: * Use is subject to license terms.
08: *
09: * This distribution may include materials developed by third parties.
10: *
11: * ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
12: *
13: * Module Name : JSIP Specification
14: * File Name : DialogDoesNotExistException.java
15: * Author : Phelim O'Doherty
16: *
17: * HISTORY
18: * Version Date Author Comments
19: * 1.2 16/06/2005 Phelim O'Doherty Initial version
20: *~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
21: */package javax.sip;
22:
23: /**
24: * This Exception is thrown when a user attempts to reference
25: * Dialog that does currently not exist in the underlying SipProvider
26: *
27: * @author BEA Systems, NIST
28: * @since 1.2
29: */
30:
31: public class DialogDoesNotExistException extends SipException {
32:
33: /**
34: * Constructs a new <code>DialogDoesNotExistException</code>
35: */
36:
37: public DialogDoesNotExistException() {
38:
39: super ();
40:
41: }
42:
43: /**
44:
45: * Constructs a new <code>DialogDoesNotExistException</code> with
46:
47: * the specified error message.
48:
49: *
50:
51: * @param message the detail of the error message
52:
53: */
54:
55: public DialogDoesNotExistException(String message) {
56:
57: super (message);
58:
59: }
60:
61: /**
62:
63: * Constructs a new <code>DialogDoesNotExistException</code> with the
64:
65: * specified error message and specialized cause that triggered this error
66:
67: * condition.
68:
69: *
70:
71: * @param message the detail of the error message
72:
73: * @param cause the specialized cause that triggered this exception
74:
75: */
76:
77: public DialogDoesNotExistException(String message, Throwable cause) {
78:
79: super(message, cause);
80:
81: }
82:
83: }
|