summaryrefslogtreecommitdiff
path: root/requests/exceptions.py
diff options
context:
space:
mode:
authorYuval Adam <yuv.adm@gmail.com>2012-03-17 15:32:50 -0700
committerYuval Adam <yuv.adm@gmail.com>2012-03-17 15:32:50 -0700
commitd9fa3b96ecab96b92ef0258ce71fc8982a310233 (patch)
tree8012508a5d02dca25361c2f3b3e594021e3858bd /requests/exceptions.py
parent780728d467e777066c79cd25cf00b79720c81b65 (diff)
working ep.io deployment
Diffstat (limited to 'requests/exceptions.py')
-rw-r--r--requests/exceptions.py26
1 files changed, 0 insertions, 26 deletions
diff --git a/requests/exceptions.py b/requests/exceptions.py
deleted file mode 100644
index c08c614..0000000
--- a/requests/exceptions.py
+++ /dev/null
@@ -1,26 +0,0 @@
-# -*- coding: utf-8 -*-
-
-"""
-requests.exceptions
-~~~~~~~~~~~~~~~
-
-"""
-
-class RequestException(Exception):
- """There was an ambiguous exception that occured while handling your
- request."""
-
-class AuthenticationError(RequestException):
- """The authentication credentials provided were invalid."""
-
-class Timeout(RequestException):
- """The request timed out."""
-
-class URLRequired(RequestException):
- """A valid URL is required to make a request."""
-
-class InvalidMethod(RequestException):
- """An inappropriate method was attempted."""
-
-class TooManyRedirects(RequestException):
- """Too many redirects."""