01: /**
02: * ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
03: * Unpublished - rights reserved under the Copyright Laws of the United States.
04: * Copyright © 2005 BEA Systems, Inc. All rights reserved.
05: *
06: * Use is subject to license terms.
07: *
08: * This distribution may include materials developed by third parties.
09: *
10: * ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
11: *
12: * Module Name : JSIP Specification
13: * File Name : TransportAlreadySupportedException.java
14: * Author : Phelim O'Doherty
15: *
16: * HISTORY
17: * Version Date Author Comments
18: * 1.2 15/08/2005 Phelim O'Doherty Initial version
19: *~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
20: */package javax.sip;
21:
22: /**
23: * The TransportAlreadySupportedException indicates that a specific transport is
24: * already supported by a SipProvider via its ListeningPoints.
25: *
26: * @author BEA Systems, NIST
27: * @since 1.2
28: */
29:
30: public class TransportAlreadySupportedException extends SipException {
31:
32: /**
33: * Constructs a new <code>TransportAlreadySupportedException</code>.
34: */
35: public TransportAlreadySupportedException() {
36: super ();
37: }
38:
39: /**
40: * Constructs a new <code>TransportAlreadySupportedException</code> with
41: * the specified error message.
42: *
43: * @param message the error message of this Exception.
44: */
45: public TransportAlreadySupportedException(String message) {
46: super (message);
47: }
48:
49: /**
50: * Constructs a new <code>TransportAlreadySupportedException</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 TransportAlreadySupportedException(String message,
58: Throwable cause) {
59: super(message, cause);
60: }
61:
62: }
|