Skip to content

Instantly share code, notes, and snippets.

@luiseduardogfranca
Created May 18, 2017 13:53
Show Gist options
  • Save luiseduardogfranca/dfbb7336167e8d3dbda138217c74294b to your computer and use it in GitHub Desktop.
Save luiseduardogfranca/dfbb7336167e8d3dbda138217c74294b to your computer and use it in GitHub Desktop.
Response with Retrofit
try {
Response response = c.execute();
if (response.isSuccessful()) {
Login.ID_LOGIN = (String) response.body());
} else {
throw new LoginException(response.errorBody().string());
}
}catch (IOException io){
throw new LoginException(io.getMessage());
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment