Home | History | Annotate | Download | only in http

Lines Matching defs:ioException

13 import java.io.IOException;
92 private HttpResponse findResponse(HttpRequest httpRequest) throws HttpException, IOException {
106 public HttpResponse emulateRequest(HttpHost httpHost, HttpRequest httpRequest, HttpContext httpContext, RequestDirector requestDirector) throws HttpException, IOException {
189 private IOException ioException;
198 public RequestMatcherResponseRule(RequestMatcher requestMatcher, IOException ioException) {
200 this.ioException = ioException;
219 public HttpResponse getResponse() throws HttpException, IOException {
221 if (ioException != null) throw ioException;
275 * @throws IOException Get turned into a RuntimeException to cause your test to fail.
277 boolean matches(HttpEntity actualPostBody) throws IOException;
357 } catch (IOException e) {