thenThrow method

void thenThrow(
  1. HttpAdapterException exception
)

The stub throws exception for every matching request.

Implementation

void thenThrow(HttpAdapterException exception) {
  _adapter._stubs.add(_build([_Reply.failure(exception)]));
}