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

scalikejdbc.orm.exception.AssociationSettingsException.scala Maven / Gradle / Ivy

The newest version!
package scalikejdbc.orm.exception

/**
  * Represents settings failures of associations.
  *
  * @param message message
  * @param cause cause
  */
case class AssociationSettingsException(
  message: String,
  cause: Throwable = null
) extends IllegalStateException(message, cause)




© 2015 - 2024 Weber Informatics LLC | Privacy Policy