All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.twitter.finagle.thrift.service.ThriftSourcedException.scala Maven / Gradle / Ivy

There is a newer version: 24.2.0
Show newest version
package com.twitter.finagle.thrift.service

import com.twitter.finagle.SourcedException

private[thrift] object ThriftSourcedException {

  def setServiceName(ex: Throwable, serviceName: String): Throwable = ex match {
    case se: SourcedException if !serviceName.isEmpty =>
      se.serviceName = serviceName
      se
    case _ => ex
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy