Package org.apache.hc.core5.http
Class RequestNotExecutedException
- java.lang.Object
-
- java.lang.Throwable
-
- java.lang.Exception
-
- java.io.IOException
-
- org.apache.hc.core5.http.ConnectionClosedException
-
- org.apache.hc.core5.http.RequestNotExecutedException
-
- All Implemented Interfaces:
java.io.Serializable
@Internal public class RequestNotExecutedException extends ConnectionClosedException
ConnectionClosedException
subclass that signals requests cannot not be executed due to the connection being closed. Generally requests failed with this exception are safe to be re-executed.- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description RequestNotExecutedException()
Constructs a new RequestNotExecutedException with a default message.RequestNotExecutedException(java.lang.String message)
Constructs a new RequestNotExecutedException with the specified detail message.
-
-
-
Constructor Detail
-
RequestNotExecutedException
public RequestNotExecutedException()
Constructs a new RequestNotExecutedException with a default message.
-
RequestNotExecutedException
public RequestNotExecutedException(java.lang.String message)
Constructs a new RequestNotExecutedException with the specified detail message.- Parameters:
message
- The exception detail message
-
-