ParsingFailure

Companion:
class
trait Sum
trait Mirror
class Object
trait Matchable
class Any

Type members

Classlikes

final case class And(children: NonEmptyList[ParsingFailure & NonAnd]) extends ParsingFailure with NonOr
final case class MalformedValue(param: Param, value: String, message: String) extends ParsingFailure with NonAnd with NonOr
final case class MissingParam(param: Param) extends ParsingFailure with NonAnd with NonOr
final case class MissingValue(param: Param) extends ParsingFailure with NonAnd with NonOr
sealed trait NonAnd
sealed trait NonOr
final case class Or(children: NonEmptyList[ParsingFailure & NonOr]) extends ParsingFailure with NonAnd
final case class UnexpectedValue(param: Param, value: String) extends ParsingFailure with NonAnd with NonOr
final case class UnparsedArg(arg: Indexed[Arg]) extends ParsingFailure with NonAnd with NonOr

Inherited types

type MirroredElemLabels <: Tuple

The names of the product elements

The names of the product elements

Inherited from:
Mirror
type MirroredLabel <: String

The name of the type

The name of the type

Inherited from:
Mirror

Value members

Concrete methods

def and(pfs: NonEmptyList[ParsingFailure]): And
def or(pfs: NonEmptyList[ParsingFailure]): Or
def toNonOrNel(pf: ParsingFailure): NonEmptyList[ParsingFailure & NonOr]