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

io.cequence.wsclient.domain.CequenceWSException.scala Maven / Gradle / Ivy

There is a newer version: 0.6.0
Show newest version
package io.cequence.wsclient.domain

class CequenceWSException(
  message: String,
  cause: Throwable
) extends RuntimeException(message, cause) {
  def this(message: String) = this(message, null)
}

class CequenceWSTimeoutException(
  message: String,
  cause: Throwable
) extends CequenceWSException(message, cause) {
  def this(message: String) = this(message, null)
}

class CequenceWSUnknownHostException(
  message: String,
  cause: Throwable
) extends CequenceWSException(message, cause) {
  def this(message: String) = this(message, null)
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy