in http-core/src/main/scala/com/twitter/finatra/http/exceptions/HttpException.scala [32:40]
override def equals(other: Any): Boolean = other match {
case that: HttpException =>
(that canEqual this) &&
statusCode == that.statusCode &&
mediaType == that.mediaType &&
errors == that.errors &&
headers == that.headers
case _ => false
}