I have an instance of HttpGet, and I’ve set timeouts in HttpConnectionParams. My connection and request probably won’t time out but they might and I’d like the chance to respond to this and some how inform the user of this event.
How/Where can I do this?
A connection timeout would cause an
ConnectTimeoutException, catch that and display a message. If you don’t need to do anything specific, catchingIOExceptionmight be good enough.