final case class UnknownFailure(nameStack: List[String], position: Int) extends ParserError[Nothing] with Product with Serializable
Unknown parser error. This is only produced in exceptional cases that should not happen, for example if the unsafe regex variants encounter an error.
- nameStack
Stack of named parsers until reaching the failure
- position
Input stream position
Linear Supertypes
Ordering
- Alphabetic
- By Inheritance
Inherited
- UnknownFailure
- Serializable
- Product
- Equals
- ParserError
- AnyRef
- Any
- Hide All
- Show All
Visibility
- Public
- Protected
Instance Constructors
Value Members
- def addFailedBranch[Err2 >: Nothing](error: ParserError[Err2]): ParserError[Err2]
- Definition Classes
- ParserError
- def map[Err2](f: (Nothing) => Err2): ParserError[Err2]
- Definition Classes
- ParserError
- val nameStack: List[String]
- val position: Int
- def productElementNames: Iterator[String]
- Definition Classes
- Product