All Downloads are FREE. Search and download functionalities are using the official Maven repository.

ujson.Exceptions.scala Maven / Gradle / Ivy

There is a newer version: 4.0.2
Show newest version
package ujson


sealed trait ParsingFailedException extends Exception

case class ParseException(clue: String, index: Int)
  extends Exception(clue + " at index " + index) with ParsingFailedException

case class IncompleteParseException(msg: String)
  extends Exception(msg) with ParsingFailedException




© 2015 - 2025 Weber Informatics LLC | Privacy Policy