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

tamer.errors.scala Maven / Gradle / Ivy

The newest version!
package tamer

private[tamer] final case class TamerError(msg: String, cause: Throwable) extends RuntimeException(msg, cause)
private[tamer] object TamerError {
  final def apply(msg: String): TamerError = new TamerError(msg, null)
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy