}
@dagger.Module(overrides = true, library = true, includes = TestInterface.Module.class)
static class IOEOnDecode {
@Provides Decoder decoder() {
return new Decoder() {
@Override
public Object decode(Response response, Type type) throws IOException {
throw new IOException("error reading response");
}
};