package error
Content Hierarchy
Type Members
- case class ExecutionError(message: String) extends Throwable with MoleculeError with Product with Serializable
-
case class
InsertError(tplIndex: Int, fullAttr: String, errors: Seq[String] = Nil, nestedErrors: Seq[(Int, Seq[InsertError])] = Nil) extends Product with Serializable
Insert error - validation errors for an insert row of data
Insert error - validation errors for an insert row of data
- tplIndex
Index of attribute value in data tuple
- fullAttr
Full attribute name (Ns.attr)
- errors
Error messages
- nestedErrors
Nested errors
- case class InsertErrors(errors: Seq[(Int, Seq[InsertError])], message: Option[String] = None) extends Throwable with MoleculeError with Product with Serializable
- case class ModelError(message: String) extends Throwable with MoleculeError with Product with Serializable
- sealed trait MoleculeError extends Throwable with Product with Serializable
- case class ValidationErrors(errorMap: Map[String, Seq[String]]) extends Throwable with MoleculeError with Product with Serializable