if (getMethod.getStatusCode() >= HTTP_ERRORS)
throw new ConnectionException(Activator.getDefault().createErrorStatus("Server returned HTTP Status " + String.valueOf(getMethod.getStatusCode()), null)); //$NON-NLS-1$
/* In case the Feed has not been modified since */
if (getMethod.getStatusCode() == HTTP_STATUS_NOT_MODIFIED)
throw new NotModifiedException(Activator.getDefault().createInfoStatus("Feed has not been modified since!", null)); //$NON-NLS-1$
/* In case response body is not available */
if (inS == null)
throw new ConnectionException(Activator.getDefault().createErrorStatus("Response Stream is not available!", null)); //$NON-NLS-1$