ParseFailed

dev.constructive.eo.circe.JsonFailure.ParseFailed
final case class ParseFailed(cause: ParsingFailure)

Input String didn't parse as JSON. Surfaced only by the Json | String overloads; when the caller passes a Json directly this case cannot fire. The wrapped ParsingFailure carries circe's line/column diagnostics.

Attributes

Source
JsonFailure.scala

Members list

Value members

Inherited methods

def message: String

Human-readable diagnostic. Kept separate from toString so the default enum representation remains useful for structural inspection / pattern-matching-in-tests.

Human-readable diagnostic. Kept separate from toString so the default enum representation remains useful for structural inspection / pattern-matching-in-tests.

Attributes

Inherited from:
JsonFailure
Source
JsonFailure.scala
def productElementNames: Iterator[String]

An iterator over the names of all the elements of this product.

An iterator over the names of all the elements of this product.

Attributes

Inherited from:
Product
Source
Product.scala
def productIterator: Iterator[Any]

An iterator over all the elements of this product.

An iterator over all the elements of this product.

Attributes

Returns

in the default implementation, an Iterator[Any]

Inherited from:
Product
Source
Product.scala