You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@hc.apache.org by ol...@apache.org on 2019/12/30 09:56:23 UTC

[httpcomponents-client] branch master updated: Fix bug in ResourceIOException where message was not passed to super.

This is an automated email from the ASF dual-hosted git repository.

olegk pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/httpcomponents-client.git


The following commit(s) were added to refs/heads/master by this push:
     new 40173ca  Fix bug in ResourceIOException where message was not passed to super.
40173ca is described below

commit 40173ca0712696fe41c5161fc3e9a94e0983c939
Author: Scott Gifford <sg...@amazon.com>
AuthorDate: Sat Dec 28 21:51:48 2019 -0500

    Fix bug in ResourceIOException where message was not passed to super.
---
 .../main/java/org/apache/hc/client5/http/cache/ResourceIOException.java | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/httpclient5-cache/src/main/java/org/apache/hc/client5/http/cache/ResourceIOException.java b/httpclient5-cache/src/main/java/org/apache/hc/client5/http/cache/ResourceIOException.java
index 6b557c5..9222f3a 100644
--- a/httpclient5-cache/src/main/java/org/apache/hc/client5/http/cache/ResourceIOException.java
+++ b/httpclient5-cache/src/main/java/org/apache/hc/client5/http/cache/ResourceIOException.java
@@ -36,7 +36,7 @@ public class ResourceIOException extends IOException {
     private static final long serialVersionUID = 1L;
 
     public ResourceIOException(final String message) {
-        super();
+        super(message);
     }
 
     public ResourceIOException(final String message, final Throwable cause) {