OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:HTTPClientError
(Results
1 - 4
of
4
) sorted by null
/external/chromium-trace/catapult/third_party/Paste/paste/
httpexceptions.py
42
HTTPClientError
413
class
HTTPClientError
(HTTPError):
427
class HTTPBadRequest(
HTTPClientError
):
430
class HTTPUnauthorized(
HTTPClientError
):
439
class HTTPPaymentRequired(
HTTPClientError
):
444
class HTTPForbidden(
HTTPClientError
):
449
class HTTPNotFound(
HTTPClientError
):
454
class HTTPMethodNotAllowed(
HTTPClientError
):
462
class HTTPNotAcceptable(
HTTPClientError
):
470
class HTTPProxyAuthenticationRequired(
HTTPClientError
)
[
all
...]
/external/chromium-trace/catapult/third_party/WebOb/webob/
exc.py
37
HTTPClientError
604
class
HTTPClientError
(HTTPError):
620
class HTTPBadRequest(
HTTPClientError
):
623
class HTTPUnauthorized(
HTTPClientError
):
625
subclass of :class:`~
HTTPClientError
`
639
class HTTPPaymentRequired(
HTTPClientError
):
641
subclass of :class:`~
HTTPClientError
`
649
class HTTPForbidden(
HTTPClientError
):
651
subclass of :class:`~
HTTPClientError
`
662
class HTTPNotFound(
HTTPClientError
)
[
all
...]
/external/chromium-trace/catapult/third_party/Paste/tests/test_exceptions/
test_httpexceptions.py
90
assert isinstance(notfound,
HTTPClientError
)
96
assert not isinstance(notimpl,
HTTPClientError
)
/external/chromium-trace/catapult/third_party/webapp2/tests/
misc_test.py
27
self.assertRaises(webob.exc.
HTTPClientError
, webapp2.abort, 400)
Completed in 672 milliseconds