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

.circumflex-orm.2.2.source-code.exception.scala Maven / Gradle / Ivy

There is a newer version: 2.5
Show newest version
package ru.circumflex
package orm

/*!# Exceptions

The `ORMException`s are thrown by Circumflex ORM components and usually mean that current
transaction needs to be rolled back and closed ASAP.
*/
class ORMException(msg: String, cause: Throwable) extends Exception(msg, cause) {
  def this(msg: String) = this(msg, null)
  def this(cause: Throwable) = this(null, cause)
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy