Searched refs:HTTPNotFound (Results 1 - 11 of 11) sorted by relevance

/external/chromium-trace/trace-viewer/third_party/webapp2/tests/
H A Dextras_routes_test.py177 self.assertRaises(webapp2.exc.HTTPNotFound, router.match, webapp2.Request.blank('/foo'))
265 self.assertRaises(webapp2.exc.HTTPNotFound, router.match, webapp2.Request.blank(uri1b))
266 self.assertRaises(webapp2.exc.HTTPNotFound, router.match, webapp2.Request.blank(uri1c))
269 self.assertRaises(webapp2.exc.HTTPNotFound, router.match, webapp2.Request.blank(uri2b))
270 self.assertRaises(webapp2.exc.HTTPNotFound, router.match, webapp2.Request.blank(uri2c))
271 self.assertRaises(webapp2.exc.HTTPNotFound, router.match, webapp2.Request.blank(uri2d))
275 self.assertRaises(webapp2.exc.HTTPNotFound, router.match, webapp2.Request.blank(uri3c))
276 self.assertRaises(webapp2.exc.HTTPNotFound, router.match, webapp2.Request.blank(uri3d))
277 self.assertRaises(webapp2.exc.HTTPNotFound, router.match, webapp2.Request.blank(uri3e))
278 self.assertRaises(webapp2.exc.HTTPNotFound, route
[all...]
H A Dmisc_test.py31 self.assertRaises(webob.exc.HTTPNotFound, webapp2.abort, 404)
/external/chromium-trace/trace-viewer/third_party/WebOb/webob/
H A Dstatic.py44 return exc.HTTPNotFound(comment=msg)
151 return exc.HTTPNotFound(comment=path)
160 return exc.HTTPNotFound(comment=index_path)
H A Dexc.py42 * 404 - :class:`HTTPNotFound`
662 class HTTPNotFound(HTTPClientError): class in inherits:HTTPClientError
/external/chromium-trace/trace-viewer/third_party/Paste/tests/test_exceptions/
H A Dtest_httpexceptions.py87 notfound = HTTPNotFound()
/external/chromium-trace/trace-viewer/third_party/Paste/paste/
H A Dfileapp.py213 exc = HTTPNotFound(
293 app = HTTPNotFound(comment=path)
338 exc = HTTPNotFound("The file requested, '%s', was not found." % path)
341 exc = HTTPNotFound("Path requested, '%s', is not a file." % path)
H A Durlparser.py216 exc = httpexceptions.HTTPNotFound(
496 exc = httpexceptions.HTTPNotFound(
505 exc = httpexceptions.HTTPNotFound(
587 exc = httpexceptions.HTTPNotFound(
H A Durlmap.py120 app = httpexceptions.HTTPNotFound(
H A Dhttpexceptions.py47 * 404 - HTTPNotFound
449 class HTTPNotFound(HTTPClientError): class in inherits:HTTPClientError
656 ``HTTPNotFound``, ``HTTPMovedPermanently``, etc) and turns them
/external/chromium-trace/trace-viewer/third_party/Paste/paste/evalexception/
H A Dmiddleware.py197 exc = httpexceptions.HTTPNotFound(
/external/chromium-trace/trace-viewer/third_party/webapp2/
H A Dwebapp2.py1154 raise ``exc.HTTPNotFound`` if no route matched or
1198 ``exc.HTTPNotFound`` if no route matched or
1214 raise exc.HTTPNotFound()
1259 ``exc.HTTPNotFound`` if no route matched or

Completed in 176 milliseconds