com.eharmony.aloha.AlohaException.scala Maven / Gradle / Ivy
The newest version!
package com.eharmony.aloha
class AlohaException(message: String, cause: Throwable) extends RuntimeException(message, cause) {
def this() = this(null, null)
def this(message: String) = this(message, null)
def this(cause: Throwable) = this(null, cause)
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy