From 184cf6684ff923e48dd2fbc189dca3814e33ae3c Mon Sep 17 00:00:00 2001 From: Daniel Grana Date: Thu, 18 Mar 2010 10:05:33 -0300 Subject: [PATCH] Remove HttpException references from docs. Since 0.7, scrapy returns non-200 as Response objects and does not raise HttpException anymore --- docs/topics/exceptions.rst | 8 -------- 1 file changed, 8 deletions(-) diff --git a/docs/topics/exceptions.rst b/docs/topics/exceptions.rst index 115b00428..8c9ab7594 100644 --- a/docs/topics/exceptions.rst +++ b/docs/topics/exceptions.rst @@ -22,14 +22,6 @@ DropItem The exception that must be raised by item pipeline stages to stop processing an Item. For more information see :ref:`topics-item-pipeline`. -HttpException -------------- - -.. exception:: HttpException - -This exception is raised by the downloader when a non-200 response has been -downloaded. - IgnoreRequest -------------