Searched refs:HTTPNotFound (Results 1 - 11 of 11) sorted by relevance
/external/chromium-trace/trace-viewer/third_party/webapp2/tests/ |
H A D | extras_routes_test.py | 177 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 D | misc_test.py | 31 self.assertRaises(webob.exc.HTTPNotFound, webapp2.abort, 404)
|
/external/chromium-trace/trace-viewer/third_party/WebOb/webob/ |
H A D | static.py | 44 return exc.HTTPNotFound(comment=msg) 151 return exc.HTTPNotFound(comment=path) 160 return exc.HTTPNotFound(comment=index_path)
|
H A D | exc.py | 42 * 404 - :class:`HTTPNotFound` 662 class HTTPNotFound(HTTPClientError): class in inherits:HTTPClientError
|
/external/chromium-trace/trace-viewer/third_party/Paste/tests/test_exceptions/ |
H A D | test_httpexceptions.py | 87 notfound = HTTPNotFound()
|
/external/chromium-trace/trace-viewer/third_party/Paste/paste/ |
H A D | fileapp.py | 213 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 D | urlparser.py | 216 exc = httpexceptions.HTTPNotFound( 496 exc = httpexceptions.HTTPNotFound( 505 exc = httpexceptions.HTTPNotFound( 587 exc = httpexceptions.HTTPNotFound(
|
H A D | urlmap.py | 120 app = httpexceptions.HTTPNotFound(
|
H A D | httpexceptions.py | 47 * 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 D | middleware.py | 197 exc = httpexceptions.HTTPNotFound(
|
/external/chromium-trace/trace-viewer/third_party/webapp2/ |
H A D | webapp2.py | 1154 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