sealed trait ParserError[+Err] extends AnyRef

Type representing a parser error

Self Type
ParserError[Err]
Linear Supertypes
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. ParserError
  2. AnyRef
  3. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. Protected

Value Members

  1. def addFailedBranch[Err2 >: Err](error: ParserError[Err2]): ParserError[Err2]
  2. def map[Err2](f: (Err) => Err2): ParserError[Err2]