Edgewall Software

Changes between Version 12 and Version 13 of TracDev/Exceptions


Ignore:
Timestamp:
Jul 16, 2015, 10:38:33 AM (9 years ago)
Author:
anonymous
Comment:

Document HTTPException subclasses

Legend:

Unmodified
Added
Removed
Modified
  • TracDev/Exceptions

    v12 v13  
    1919      * [=#TimeoutError `TimeoutError`] ([source:trunk/trac/db/pool.py#/TimeoutError trac.db.pool]): Exception raised by the connection pool when no connection has become available after a given timeout (Prior to 1.0.2dev-r12305, inherited directly from `Exception`).
    2020    * [=#HTTPException `HTTPException`] ([source:trunk/trac/web/api.py#/HTTPException trac.web.api]): Representing a HTTP status code
     21      * [=#HTTPBadRequest `HTTPBadRequest`] ([source:trunk/trac/web/api.py#/_HTTPException_subclass_names trac.web.api]): 400 Bad Request
     22      * [=#HTTPUnauthorized `HTTPUnauthorized`] ([source:trunk/trac/web/api.py#/_HTTPException_subclass_names trac.web.api]): 401 Unauthorized
     23      * [=#HTTPPaymentRequired `HTTPPaymentRequired`] ([source:trunk/trac/web/api.py#/_HTTPException_subclass_names trac.web.api]): 402 Payment Required
     24      * [=#HTTPForbidden `HTTPForbidden`] ([source:trunk/trac/web/api.py#/_HTTPException_subclass_names trac.web.api]): 403 Forbidden
     25      * [=#HTTPNotFound `HTTPNotFound`] ([source:trunk/trac/web/api.py#/_HTTPException_subclass_names trac.web.api]): 404 Not Found
     26      * [=#HTTPMethodNotAllowed `HTTPMethodNotAllowed`] ([source:trunk/trac/web/api.py#/_HTTPException_subclass_names trac.web.api]): 405 Method Not Allowed
     27      * [=#HTTPNotAcceptable `HTTPNotAcceptable`] ([source:trunk/trac/web/api.py#/_HTTPException_subclass_names trac.web.api]): 406 Not Acceptable
     28      * [=#HTTPProxyAuthenticationRequired `HTTPProxyAuthenticationRequired`] ([source:trunk/trac/web/api.py#/_HTTPException_subclass_names trac.web.api]): 407 Proxy Authentication Required
     29      * [=#HTTPRequestTimeout `HTTPRequestTimeout`] ([source:trunk/trac/web/api.py#/_HTTPException_subclass_names trac.web.api]): 408 Request Timeout
     30      * [=#HTTPConflict `HTTPConflict`] ([source:trunk/trac/web/api.py#/_HTTPException_subclass_names trac.web.api]): 409 Conflict
     31      * [=#HTTPGone `HTTPGone`] ([source:trunk/trac/web/api.py#/_HTTPException_subclass_names trac.web.api]): 410 Gone
     32      * [=#HTTPLengthRequired `HTTPLengthRequired`] ([source:trunk/trac/web/api.py#/_HTTPException_subclass_names trac.web.api]): 411 Length Required
     33      * [=#HTTPPreconditionFailed `HTTPPreconditionFailed`] ([source:trunk/trac/web/api.py#/_HTTPException_subclass_names trac.web.api]): 412 Precondition Failed
     34      * [=#HTTPRequestEntityTooLarge `HTTPRequestEntityTooLarge`] ([source:trunk/trac/web/api.py#/_HTTPException_subclass_names trac.web.api]): 413 Request Entity Too Large
     35      * [=#HTTPRequestUriTooLong `HTTPRequestUriTooLong`] ([source:trunk/trac/web/api.py#/_HTTPException_subclass_names trac.web.api]): 414 Request-Uri Too Long
     36      * [=#HTTPUnsupportedMediaType `HTTPUnsupportedMediaType`] ([source:trunk/trac/web/api.py#/_HTTPException_subclass_names trac.web.api]): 415 Unsupported Media Type
     37      * [=#HTTPRequestedRangeNotSatisfiable `HTTPRequestedRangeNotSatisfiable`] ([source:trunk/trac/web/api.py#/_HTTPException_subclass_names trac.web.api]): 416 Requested Range Not Satisfiable
     38      * [=#HTTPExpectationFailed `HTTPExpectationFailed`] ([source:trunk/trac/web/api.py#/_HTTPException_subclass_names trac.web.api]): 417 Expectation Failed
     39      * [=#HTTPInternalError `HTTPInternalError`] ([source:trunk/trac/web/api.py#/_HTTPException_subclass_names trac.web.api]): 500 Internal Server Error
     40      * [=#HTTPNotImplemented `HTTPNotImplemented`] ([source:trunk/trac/web/api.py#/_HTTPException_subclass_names trac.web.api]): 501 Not Implemented
     41      * [=#HTTPBadGateway `HTTPBadGateway`] ([source:trunk/trac/web/api.py#/_HTTPException_subclass_names trac.web.api]): 502 Bad Gateway
     42      * [=#HTTPServiceUnavailable `HTTPServiceUnavailable`] ([source:trunk/trac/web/api.py#/_HTTPException_subclass_names trac.web.api]): 503 Service Unavailable
     43      * [=#HTTPGatewayTimeout `HTTPGatewayTimeout`] ([source:trunk/trac/web/api.py#/_HTTPException_subclass_names trac.web.api]): 504 Gateway Timeout
     44      * [=#HTTPVersionNotSupported `HTTPVersionNotSupported`] ([source:trunk/trac/web/api.py#/_HTTPException_subclass_names trac.web.api]): 505 Http Version Not Supported
    2145    * [=#RequestDone `RequestDone`] ([source:trunk/trac/web/api.py#/RequestDone trac.web.api]): Marker exception that indicates whether request processing has completed and a response was sent.
    2246    * [=#ParseError `ParseError`] ([source:trunk/trac/versioncontrol/svn_authz.py#/ParseError trac.versioncontrol.svn_authz]): Exception thrown for parse errors in authz files