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):
26
37
class Forbidden(HTTPError):
29
42
class NotFound(HTTPError):
32
47
class MethodNotAllowed(HTTPError):