case class ValidationError(messages: Seq[String], args: Any*) extends Product with Serializable

A validation error.

messages

the error message, if more then one message is passed it will use the last one

args

the error message arguments

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

Instance Constructors

  1. new ValidationError(messages: Seq[String], args: Any*)

    messages

    the error message, if more then one message is passed it will use the last one

    args

    the error message arguments

Value Members

  1. val args: Any*
  2. lazy val message: String
  3. val messages: Seq[String]
  4. def productElementNames: Iterator[String]
    Definition Classes
    Product