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

com.mesosphere.cosmos.finch.RequestError.scala Maven / Gradle / Ivy

The newest version!
package com.mesosphere.cosmos.finch

import com.twitter.finagle.http.Status
import io.circe.JsonObject

abstract class RequestError(causedBy: Option[Throwable] = None) extends RuntimeException(causedBy.orNull) {
  def status: Status
  def errType: String
  def getData: Option[JsonObject]
  def getHeaders: Map[String, String]
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy