Searched refs:ResponseException (Results 1 – 2 of 2) sorted by relevance
/external/nanohttpd/core/src/main/java/fi/iki/elonen/ |
D | NanoHTTPD.java | 586 …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/ |
D | test_smtplib.py | 748 class ResponseException(Exception): pass class 774 except ResponseException as e:
|