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

tscfg.exceptions.ObjectDefinitionException.scala Maven / Gradle / Ivy

The newest version!
package tscfg.exceptions

/** Exception to indicate, that there is a problem in the definition of an
  * object
  *
  * @param msg
  *   Error message
  * @param cause
  *   What caused the error
  */
final case class ObjectDefinitionException(
    private val msg: String = "",
    private val cause: Throwable = None.orNull
) extends Exception(msg, cause)




© 2015 - 2024 Weber Informatics LLC | Privacy Policy