io.cequence.wsclient.domain.CequenceWSException.scala Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of ws-client-core_3 Show documentation
Show all versions of ws-client-core_3 Show documentation
Generic WebServices library currently only with Play WS impl./backend
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)
}