Home
last modified time | relevance | path

Searched refs:ResponseException (Results 1 – 2 of 2) sorted by relevance

/external/nanohttpd/core/src/main/java/fi/iki/elonen/
DNanoHTTPD.java586 …ng, String> pre, Map<String, String> parms, Map<String, String> headers) throws ResponseException { in decodeHeader()
596 …throw new ResponseException(Response.Status.BAD_REQUEST, "BAD REQUEST: Syntax error. Usage: GET /e… in decodeHeader()
602 …throw new ResponseException(Response.Status.BAD_REQUEST, "BAD REQUEST: Missing URI. Usage: GET /ex… in decodeHeader()
637 …throw new ResponseException(Response.Status.INTERNAL_ERROR, "SERVER INTERNAL ERROR: IOException: "… in decodeHeader()
644 …, ByteBuffer fbuf, Map<String, String> parms, Map<String, String> files) throws ResponseException { in decodeMultipartFormData()
648 …throw new ResponseException(Response.Status.BAD_REQUEST, "BAD REQUEST: Content type is multipart/f… in decodeMultipartFormData()
663 …throw new ResponseException(Response.Status.BAD_REQUEST, "BAD REQUEST: Content type is multipart/f… in decodeMultipartFormData()
697 …throw new ResponseException(Response.Status.INTERNAL_ERROR, "Multipart header size exceeds MAX_HEA… in decodeMultipartFormData()
723 } catch (ResponseException re) { in decodeMultipartFormData()
726 throw new ResponseException(Response.Status.INTERNAL_ERROR, e.toString()); in decodeMultipartFormData()
[all …]
/external/python/cpython3/Lib/test/
Dtest_smtplib.py670 class ResponseException(Exception): pass class
696 except ResponseException as e: