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 public ResponseReadTimeoutException(String message, Throwable cause) {
11 super(message, cause);
12 }
13
14 public ResponseReadTimeoutException(String message) {
15 super(message);
16 }
17
18 public ResponseReadTimeoutException(Throwable cause) {
19 super(cause);
20 }
21 }