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