Log.debug("GWT CONNECTOR RECEIVED: " + res.getText());
listener.onResponseReceived(res.getStatusCode(), res.getText());
}
});
} catch (final RequestException e) {
throw new ConnectorException(e.getMessage());
} catch (final Exception e) {
Log.error("Some GWT connector exception: " + e);
throw new ConnectorException(e.getMessage());
}
}