mobius-rx/src/main/java/com/spotify/mobius/rx/UnknownEffectException.java [33:54]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    super(checkNotNull(effect).toString());

    this.effect = effect;
  }

  @Override
  public boolean equals(Object o) {
    if (this == o) {
      return true;
    }
    if (!(o instanceof UnknownEffectException)) {
      return false;
    }

    UnknownEffectException that = (UnknownEffectException) o;

    return effect.equals(that.effect);
  }

  @Override
  public int hashCode() {
    return effect.hashCode();
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



mobius-rx3/src/main/java/com/spotify/mobius/rx3/UnknownEffectException.java [35:54]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    super(checkNotNull(effect).toString());
    this.effect = effect;
  }

  @Override
  public boolean equals(Object o) {
    if (this == o) {
      return true;
    }
    if (!(o instanceof UnknownEffectException)) {
      return false;
    }

    UnknownEffectException that = (UnknownEffectException) o;
    return effect.equals(that.effect);
  }

  @Override
  public int hashCode() {
    return effect.hashCode();
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



