File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed
http-client/src/main/java/io/avaje/http/client Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -75,15 +75,15 @@ public HttpException(int statusCode, Throwable cause) {
7575 }
7676
7777 HttpException (HttpResponse <?> httpResponse , DHttpClientContext context ) {
78- super ("Http Call failed with status: " + httpResponse .statusCode ());
78+ super ("Http call failed with status: " + httpResponse .statusCode ());
7979 this .httpResponse = httpResponse ;
8080 this .statusCode = httpResponse .statusCode ();
8181 this .context = context ;
8282 this .responseAsBytes = false ;
8383 }
8484
8585 HttpException (DHttpClientContext context , HttpResponse <byte []> httpResponse ) {
86- super ("Http Call failed with status: " + httpResponse .statusCode ());
86+ super ("Http call failed with status: " + httpResponse .statusCode ());
8787 this .httpResponse = httpResponse ;
8888 this .statusCode = httpResponse .statusCode ();
8989 this .context = context ;
You can’t perform that action at this time.
0 commit comments