mirror of
https://github.com/webrecorder/pywb.git
synced 2025-04-04 04:45:48 +02:00
30 lines
779 B
Python
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'
|