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

com.github.rockjam.httpaste.parsing.ParsingException.scala Maven / Gradle / Ivy

The newest version!
package com.github.rockjam.httpaste.parsing

case class ParsingException(inputString: String, index: Int, lastParser: String)
    extends RuntimeException(s"""
       |Failed to parse ${lastParser}
       |${inputString}
       |${" " * index + "^"}
     """.stripMargin)




© 2015 - 2024 Weber Informatics LLC | Privacy Policy