com.twitter.finatra.http.exceptions.HttpResponseException.scala Maven / Gradle / Ivy
package com.twitter.finatra.http.exceptions
import com.twitter.finagle.http.Response
import com.twitter.inject.exceptions.NotRetryableException
class HttpResponseException(
val response: Response)
extends Exception
with NotRetryableException {
override def getMessage: String = {
s"HttpResponseException with response $response"
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy