ParsingFailure

harness.cli.ParsingFailure$
See theParsingFailure companion trait

Attributes

Companion
trait
Graph
Supertypes
trait Sum
trait Mirror
class Object
trait Matchable
class Any
Self type

Members list

Type members

Classlikes

final case class And(children: NonEmptyList[ParsingFailure & NonAnd]) extends ParsingFailure, NonOr

Attributes

Supertypes
trait Serializable
trait Product
trait Equals
trait NonOr
class Object
trait Matchable
class Any
Show all
final case class MalformedValue(param: Param, value: String, message: String, helpHint: List[String]) extends ParsingFailure, NonAnd, NonOr

Attributes

Supertypes
trait Serializable
trait Product
trait Equals
trait NonOr
trait NonAnd
class Object
trait Matchable
class Any
Show all
final case class MissingParam(param: Param) extends ParsingFailure, NonAnd, NonOr

Attributes

Supertypes
trait Serializable
trait Product
trait Equals
trait NonOr
trait NonAnd
class Object
trait Matchable
class Any
Show all
final case class MissingValue(param: Param) extends ParsingFailure, NonAnd, NonOr

Attributes

Supertypes
trait Serializable
trait Product
trait Equals
trait NonOr
trait NonAnd
class Object
trait Matchable
class Any
Show all
sealed trait NonAnd

Attributes

Supertypes
class Object
trait Matchable
class Any
Known subtypes
class MissingParam
class MissingValue
class Or
class UnparsedArg
Show all
sealed trait NonOr

Attributes

Supertypes
class Object
trait Matchable
class Any
Known subtypes
class And
class MissingParam
class MissingValue
class UnparsedArg
Show all
final case class Or(children: NonEmptyList[ParsingFailure & NonOr]) extends ParsingFailure, NonAnd

Attributes

Supertypes
trait Serializable
trait Product
trait Equals
trait NonAnd
class Object
trait Matchable
class Any
Show all
final case class UnexpectedValue(param: Param, value: String) extends ParsingFailure, NonAnd, NonOr

Attributes

Supertypes
trait Serializable
trait Product
trait Equals
trait NonOr
trait NonAnd
class Object
trait Matchable
class Any
Show all
final case class UnparsedArg(arg: Indexed[Arg]) extends ParsingFailure, NonAnd, NonOr

Attributes

Supertypes
trait Serializable
trait Product
trait Equals
trait NonOr
trait NonAnd
class Object
trait Matchable
class Any
Show all

Inherited types

type MirroredElemLabels <: Tuple

The names of the product elements

The names of the product elements

Attributes

Inherited from:
Mirror
type MirroredLabel <: String

The name of the type

The name of the type

Attributes

Inherited from:
Mirror

Value members

Concrete methods

def and(pf0: ParsingFailure, pfN: ParsingFailure*): And
def and(pfs: NonEmptyList[ParsingFailure]): And
def or(pf0: ParsingFailure, pfN: ParsingFailure*): Or
def or(pfs: NonEmptyList[ParsingFailure]): Or
def toNonAndNel(pf: ParsingFailure): NonEmptyList[ParsingFailure & NonAnd]
def toNonOrNel(pf: ParsingFailure): NonEmptyList[ParsingFailure & NonOr]