parsley.exceptions.NonProductiveIterationException.scala Maven / Gradle / Ivy
The newest version!
/*
* Copyright 2020 Parsley Contributors
*
* SPDX-License-Identifier: BSD-3-Clause
*/
package parsley.exceptions
// $COVERAGE-OFF$
private [parsley] class NonProductiveIterationException(name: String)
extends ParsleyException(s"$name given parser which consumes no input, this will cause it to loop indefinitely")
// $COVERAGE-ON$
© 2015 - 2024 Weber Informatics LLC | Privacy Policy