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

io.youi.client.ClientException.scala Maven / Gradle / Ivy

There is a newer version: 0.11.25
Show newest version
package io.youi.client

import io.youi.http.{HttpRequest, HttpResponse, HttpStatus}

class ClientException(val message: String,
                      val request: HttpRequest,
                      val response: HttpResponse,
                      val cause: Option[Throwable]) extends RuntimeException(message, cause.orNull) {
  def status: HttpStatus = response.status
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy