future/src/main/java/com/spotify/hamcrest/future/ExceptionallyCompletedBlockingFuture.java [63:72]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
        return false;
      }
    }
  }

  @Override
  public void describeTo(final Description description) {
    description
        .appendText("a future that completed with an exception that ")
        .appendDescriptionOf(matcher);
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



future/src/main/java/com/spotify/hamcrest/future/ExceptionallyCompletedFuture.java [72:80]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
      return false;
    }
  }

  @Override
  public void describeTo(final Description description) {
    description
        .appendText("a future that completed with an exception that ")
        .appendDescriptionOf(matcher);
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



