// TODO Add logging.
@Override
public Throwable fromResponse(final Response response) {
if (response.getStatusCode() == 403) {
SecurityException securityException = null;
try {
securityException = fromJSON(response, SecurityException.class);
}
catch (RuntimeException e) {
}