Skip to content

Instantly share code, notes, and snippets.

@nbibler
Created October 25, 2010 14:14
Show Gist options
  • Save nbibler/645016 to your computer and use it in GitHub Desktop.
Save nbibler/645016 to your computer and use it in GitHub Desktop.
A collection of exceptions raised by Net::HTTP(S)
HTTP_ERRORS = [
Timeout::Error,
Errno::EADDRNOTAVAIL,
Errno::ETIMEDOUT,
Errno::EINVAL,
Errno::ECONNRESET,
Errno::ECONNREFUSED,
Errno::EHOSTUNREACH,
EOFError,
Net::HTTPBadResponse,
Net::HTTPHeaderSyntaxError,
Net::ProtocolError
]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment