1 package com.atlassian.sal.api.net;
2
3 /**
4 * Thrown by {@link Request} methods to indicate that the request failed because of
5 * an I/O error in the underlying protocol.
6 * <p>
7 * For HTTP requests, {@link #getCause()} will return the corresponding
8 * {@link SocketException}.
9 *
10 * @since 2.7.0
11 */
12 public class ResponseTransportException extends ResponseException {
13 public ResponseTransportException(String message, Throwable cause) {
14 super(message, cause);
15 }
16
17 public ResponseTransportException(String message) {
18 super(message);
19 }
20
21 public ResponseTransportException(Throwable cause) {
22 super(cause);
23 }
24 }