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

io.cequence.cohereapi.CohereClientException.scala Maven / Gradle / Ivy

There is a newer version: 0.1.14
Show newest version
package io.cequence.cohereapi

class CohereClientException(
  message: String,
  cause: Throwable
) extends RuntimeException(message, cause) {

  def this(message: String) = this(message, null)
}

class CohereClientTimeoutException(
  message: String,
  cause: Throwable
) extends CohereClientException(message, cause) {

  def this(message: String) = this(message, null)
}

class CohereClientUnknownHostException(
  message: String,
  cause: Throwable
) extends CohereClientException(message, cause) {

  def this(message: String) = this(message, null)
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy