I have to use Finagle 6.35.0 for Scala 2.11 as a dependency.
I made my project dependent on
finagle-core_2.11-6.35.0.jarfinagle-stats_2.11-6.35.0.jar.
Error what I got:
java.lang.ClassNotFoundException: com.twitter.finagle.stats.ExceptionStatsHandler.
I expected this class to be in one of these jars. However none of these jars contains ExceptionStatsHandler which is a little bit surprising for me. I have searched for it in some other finagle .jars like for example finagle-commons-stats_2.11-6.35.0.jar but without success.
Could you tell me in which finagle dependency (.jar) I could find com.twitter.finagle.stats.ExceptionStatsHandler? Maybe it should be in one of previously mentioned ones but I use improper library version?
I am talking about .jars instead of maven or gradle dependencies because my project is a J-boss module and I have to manually add .jars as dependencies.