Packages

package error

Type Members

  1. case class ExecutionError(message: String) extends Throwable with MoleculeError with Product with Serializable
  2. 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

  3. case class InsertErrors(errors: Seq[(Int, Seq[InsertError])], message: Option[String] = None) extends Throwable with MoleculeError with Product with Serializable
  4. case class ModelError(message: String) extends Throwable with MoleculeError with Product with Serializable
  5. sealed trait MoleculeError extends Throwable with Product with Serializable
  6. case class ValidationErrors(errorMap: Map[String, Seq[String]]) extends Throwable with MoleculeError with Product with Serializable

Ungrouped