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