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

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

The newest version!
package scalikejdbc.orm.exception

/**
  * Represents illegal association definitions (which won't be detected by compilation).
  *
  * @param message message
  * @param cause cause
  */
case class IllegalAssociationException(message: String, cause: Throwable = null)
  extends RuntimeException(message, cause)




© 2015 - 2024 Weber Informatics LLC | Privacy Policy