case class Invalid(errors: Seq[ValidationError]) extends ValidationResult with Product with Serializable

Validation was a failure.

errors

the resulting errors

Source
Validation.scala
Linear Supertypes
Serializable, Product, Equals, ValidationResult, AnyRef, Any
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. Invalid
  2. Serializable
  3. Product
  4. Equals
  5. ValidationResult
  6. AnyRef
  7. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. Protected

Instance Constructors

  1. new Invalid(errors: Seq[ValidationError])

    errors

    the resulting errors

Value Members

  1. def ++(other: Invalid): Invalid

    Combines these validation errors with another validation failure.

    Combines these validation errors with another validation failure.

    other

    validation failure

    returns

    a new merged Invalid

  2. val errors: Seq[ValidationError]
  3. def productElementNames: Iterator[String]
    Definition Classes
    Product