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 {
14 public ResponseTransportException(String message, Throwable cause)
15 {
16 super(message, cause);
17 }
18
19 public ResponseTransportException(String message)
20 {
21 super(message);
22 }
23
24 public ResponseTransportException(Throwable cause)
25 {
26 super(cause);
27 }
28 }