future/src/main/java/com/spotify/hamcrest/future/ExceptionallyCompletedBlockingCompletionStage.java [61:66]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
      if (matcher.matches(e.getCause())) {
        return true;
      } else {
        mismatchDescription.appendText("a stage completed exceptionally with ");
        matcher.describeMismatch(e.getCause(), mismatchDescription);
        return false;
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



future/src/main/java/com/spotify/hamcrest/future/ExceptionallyCompletedCompletionStage.java [57:62]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
          if (matcher.matches(e.getCause())) {
            return true;
          } else {
            mismatchDescription.appendText("a stage completed exceptionally with ");
            matcher.describeMismatch(e.getCause(), mismatchDescription);
            return false;
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



