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 : PeerUnavailableException.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: * The PeerUnavailableException indicates that a vendor's implementation of a
25: * JAIN SIP interface could not be created for some reason.
26: *
27: * @author BEA Systems, NIST
28: * @version 1.2
29: */
30: public class PeerUnavailableException extends SipException {
31:
32: /**
33: * Constructs a new <code>PeerUnavailableException</code>.
34: */
35: public PeerUnavailableException() {
36: super ();
37: }
38:
39: /**
40: * Constructs a new <code>PeerUnavailableException</code> with
41: * the specified error message.
42: *
43: * @param message the error message of this Exception.
44: */
45: public PeerUnavailableException(String message) {
46: super (message);
47: }
48:
49: /**
50: * Constructs a new <code>PeerUnavailableException</code> with the
51: * specified error message and specialized cause that triggered this error
52: * condition.
53: *
54: * @param message the detail of the error message
55: * @param cause the specialized cause that triggered this exception
56: */
57: public PeerUnavailableException(String message, Throwable cause) {
58: super(message, cause);
59: }
60: }
|