1
0
mirror of https://github.com/scrapy/scrapy.git synced 2025-02-22 14:32:58 +00:00

added NotSupported Exception

--HG--
extra : convert_revision : svn%3Ab85faa78-f9eb-468e-a121-7cced6da292c%40297
This commit is contained in:
Damian Canabal 2008-10-03 19:50:26 +00:00
parent 768a31a483
commit ac4688dabb

View File

@ -21,7 +21,7 @@ class IgnoreRequest(Exception):
class DontCloseDomain(Exception):
"""Request the domain not to be closed yet"""
pass
class HttpException(Exception):
def __init__(self, status, message, response):
if not message:
@ -42,3 +42,6 @@ class DropItem(Exception):
"""Drop item from the item pipeline"""
pass
class NotSupported(Exception):
"""Indicates a feature or method is not supported"""
pass