Skip to content

Commit dc357e8

Browse files
author
Michael Bahr
authored
Update Uri.java
1 parent d4bd3ca commit dc357e8

File tree

1 file changed

+1
-1
lines changed
  • client/src/main/java/org/asynchttpclient/uri

1 file changed

+1
-1
lines changed

client/src/main/java/org/asynchttpclient/uri/Uri.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@ public Uri(String scheme,//
6161
String path,//
6262
String query) {
6363

64-
this.scheme = assertNotNull(scheme, "The scheme could not be resolved. Please provide a valid URL.");
64+
this.scheme = assertNotNull(scheme, "The scheme could not be resolved. Please provide a valid URL including the protocol.");
6565
this.userInfo = userInfo;
6666
this.host = assertNotNull(host, "The host could not be resolved. Please provide a valid host.");
6767
this.port = port;

0 commit comments

Comments
 (0)