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