1 package com.atlassian.sal.api.net;
2
3 /**
4 * Thrown by {@link Request} methods to indicate that the request failed because a
5 * connection could not be established within the timeout interval.
6 *
7 * @since 2.7.0
8 */
9 public class ResponseConnectTimeoutException extends ResponseTimeoutException
10 {
11 public ResponseConnectTimeoutException(String message, Throwable cause)
12 {
13 super(message, cause);
14 }
15
16 public ResponseConnectTimeoutException(String message)
17 {
18 super(message);
19 }
20
21 public ResponseConnectTimeoutException(Throwable cause)
22 {
23 super(cause);
24 }
25 }