We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5562969 commit d2bc69dCopy full SHA for d2bc69d
app/src/main/java/me/ghui/v2er/network/APIService.java
@@ -5,7 +5,6 @@
5
import com.google.gson.GsonBuilder;
6
7
import java.io.IOException;
8
-import java.net.URISyntaxException;
9
import java.util.concurrent.TimeUnit;
10
11
import javax.annotation.Nullable;
@@ -126,7 +125,7 @@ public Response intercept(Chain chain) throws IOException {
126
125
return new Response.Builder()
127
.protocol(Protocol.HTTP_1_1)
128
.code(404)
129
- .message("Exeception when execute chain.proceed request")
+ .message("Exception when execute chain.proceed request")
130
.body(ResponseBody.create("Network error occurred", MediaType.parse("text/plain")))
131
.request(request).build();
132
}
0 commit comments