From 85b19518f409f7ce78d2cd4c5c18cd705ba8489e Mon Sep 17 00:00:00 2001 From: Chris McDonough Date: Fri, 23 Oct 2009 21:00:09 +0000 Subject: Remove 'Respond' exception (its addition would be purely speculative: we solved the reissue_time authentication policy issue a different way). --- repoze/bfg/exceptions.py | 26 -------------------------- 1 file changed, 26 deletions(-) (limited to 'repoze/bfg/exceptions.py') diff --git a/repoze/bfg/exceptions.py b/repoze/bfg/exceptions.py index bc05fa699..afd617a2c 100644 --- a/repoze/bfg/exceptions.py +++ b/repoze/bfg/exceptions.py @@ -22,29 +22,3 @@ class NotFound(Exception): into the WSGI environment under the ``repoze.bfg.message`` key, for availability to the Not Found view.""" -class Respond(Exception): - """\ - Raise this exception during view execution to return a response - immediately without proceeeding any further through the codepath. - Use of this exception is effectively a 'goto': its target is the - exception handler within the :mod:`repoze.bfg' router that catches - the exception and returns a response immediately. Note that - because this exception is caught by the router, it will not - propagate to any WSGI middleware. Note that this exception is - typically only used by the framework itself and by authentication - plugins to the framework. - - The exception must be initialized which a single argument, which - is a :term:`response` object. - - An example: - - .. code-block:: python - :linenos: - - from webob.exc import HTTPFound - from repoze.bfg.exceptions import Respond - response = HTTPFound(location='http://example.com') - raise Respond(response) - """ - -- cgit v1.2.3