Lines Matching full:exceptions
10 This module processes Python exceptions that relate to HTTP exceptions
11 by defining a set of exceptions, all subclasses of HTTPException, and a
12 request handler (`middleware`) that catches these exceptions and turns
15 This module defines exceptions according to RFC 2068 [1]_ : codes with
25 Exceptions in the 5xx range and those raised after ``start_response``
102 example, codes in the 300's are exceptions in that they interrupt
118 raise exceptions may want to provide additional detail.
177 assert self.code, "Do not directly instantiate abstract exceptions."
593 # abstract HTTP related exceptions
613 catches exceptions and turns them into proper HTTP responses
615 This middleware catches any exceptions (which are subclasses of
655 ``paste.httpexceptions.HTTPException`` exceptions (exceptions like