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 : TransactionDoesNotExistException.java
15: * Author : Phelim O'Doherty
16: *
17: * HISTORY
18: * Version Date Author Comments
19: * 1.1 08/10/2002 Phelim O'Doherty
20: *~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
21: */package javax.sip;
22:
23: /**
24: * This Exception is thrown when a user attempts to reference
25: * a client or server transaction that does currently not exist in the
26: * underlying SipProvider
27: *
28: * @author BEA Systems, NIST
29: * @version 1.2
30: */
31:
32: public class TransactionDoesNotExistException extends SipException {
33:
34: /**
35:
36: * Constructs a new <code>TransactionDoesNotExistException</code>
37:
38: */
39:
40: public TransactionDoesNotExistException() {
41:
42: super ();
43:
44: }
45:
46: /**
47:
48: * Constructs a new <code>TransactionDoesNotExistException</code> with
49:
50: * the specified error message.
51:
52: *
53:
54: * @param message the detail of the error message
55:
56: */
57:
58: public TransactionDoesNotExistException(String message) {
59:
60: super (message);
61:
62: }
63:
64: /**
65:
66: * Constructs a new <code>TransactionDoesNotExistException</code> with the
67:
68: * specified error message and specialized cause that triggered this error
69:
70: * condition.
71:
72: *
73:
74: * @param message the detail of the error message
75:
76: * @param cause the specialized cause that triggered this exception
77:
78: */
79:
80: public TransactionDoesNotExistException(String message,
81: Throwable cause) {
82:
83: super(message, cause);
84:
85: }
86:
87: }
|