15
15
# along with this program; if not, write to the Free Software
16
16
# Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
20
18
class HTTPError(Exception):
21
19
'''A base class for all HTTP errors.'''
23
27
class BadRequest(HTTPError):
27
32
class Unauthorized(HTTPError):
28
33
codename = 'Unauthorized'
31
37
class Forbidden(HTTPError):
35
42
class NotFound(HTTPError):
39
47
class MethodNotAllowed(HTTPError):