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 : TransportNotSupportedException.java
15: * Author : Phelim O'Doherty
16: *
17: * HISTORY
18: * Version Date Author Comments
19: * 1.1 08/10/2002 Phelim O'Doherty Initial version
20: *~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
21: */package javax.sip;
22:
23: /**
24: * The TransportNotSupportedException indicates that a specific transport is
25: * not supported by a vendor's implementation of this specification.
26: *
27: * @author BEA Systems, NIST
28: * @version 1.2
29: */
30:
31: public class TransportNotSupportedException extends SipException {
32:
33: /**
34: * Constructs a new <code>TransportNotSupportedException</code>.
35: */
36: public TransportNotSupportedException() {
37: super ();
38: }
39:
40: /**
41: * Constructs a new <code>TransportNotSupportedException</code> with
42: * the specified error message.
43: *
44: * @param message the error message of this Exception.
45: */
46: public TransportNotSupportedException(String message) {
47: super (message);
48: }
49:
50: /**
51: * Constructs a new <code>TransportNotSupportedException</code> with the
52: * specified error message and specialized cause that triggered this error
53: * condition.
54: *
55: * @param message the detail of the error message
56: * @param cause the specialized cause that triggered this exception
57: */
58: public TransportNotSupportedException(String message,
59: Throwable cause) {
60: super(message, cause);
61: }
62:
63: }
|