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

com.wix.pay.smaug.client.SmaugException.scala Maven / Gradle / Ivy

The newest version!
package com.wix.pay.smaug.client


class SmaugException(message: String, cause: Throwable = null) extends RuntimeException(message, cause)


case class SmaugInternalException(message: String, cause: Throwable) extends SmaugException(message, cause)

object SmaugInternalException {
  def apply(message: String): SmaugInternalException = this(message, null)
  def apply(cause: Throwable): SmaugInternalException = this(Option(cause).map(_.toString).orNull, cause)
  def apply(): SmaugInternalException = this(null, null)
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy