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

ujson.Exceptions.scala Maven / Gradle / Ivy

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 - 2024 Weber Informatics LLC | Privacy Policy