object DecodeError extends Serializable

Declares all possible values of type DecodeError.

Source
Errors.scala
Linear Supertypes
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. DecodeError
  2. Serializable
  3. AnyRef
  4. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. Protected

Type Members

  1. final case class OutOfBounds(index: Int) extends DecodeError with Product with Serializable

    Error that occurs when attempting to access a CSV cell whose index is outside of its row's boundaries.

    Error that occurs when attempting to access a CSV cell whose index is outside of its row's boundaries.

    index

    index that caused the issue.

  2. final case class TypeError(message: String) extends DecodeError with Product with Serializable

    Error that occurs when attempting to decode a CSV cell or row into an incompatible type.

    Error that occurs when attempting to decode a CSV cell or row into an incompatible type.

    A typical example of this would be to try and decode a CSV cell into an Int when its content is, say, foobar.

Value Members

  1. implicit val decodeErrorIsError: IsError[DecodeError]
  2. object TypeError extends ErrorCompanion[TypeError]

    Provides convenience methods for DecodeError.TypeError instance creation.