1
0
mirror of https://github.com/webrecorder/pywb.git synced 2025-04-04 04:45:48 +02:00
pywb/pywb/utils/wbexception.py
Ilya Kreymer 8449647c5f wbexception: remove unused status in WbException, set default error for
any uncaught exception to 500, instead of 400
2015-01-11 23:53:34 -08:00

30 lines
779 B
Python

#=================================================================
class WbException(Exception):
def __init__(self, msg=None, url=None):
Exception.__init__(self, msg)
self.url = url
# Default Error Code
# def status(self):
# return '500 Internal Server Error'
#=================================================================
class AccessException(WbException):
def status(self):
return '403 Access Denied'
#=================================================================
class BadRequestException(WbException):
def status(self):
return '400 Bad Request'
#=================================================================
class NotFoundException(WbException):
def status(self):
return '404 Not Found'