in client/src/main/java/co/elastic/opamp/client/connectivity/http/HttpErrorException.java [31:36]
public boolean equals(Object o) {
if (this == o) return true;
if (o == null || getClass() != o.getClass()) return false;
HttpErrorException that = (HttpErrorException) o;
return errorCode == that.errorCode && Objects.equals(getMessage(), that.getMessage());
}