ru.makkarpov.scalingua.pofile.parse.ParserException.scala Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of scalingua_2.11 Show documentation
Show all versions of scalingua_2.11 Show documentation
A simple gettext-like internationalization library for Scala
The newest version!
package ru.makkarpov.scalingua.pofile.parse
import java_cup.runtime.ComplexSymbolFactory.Location
case class ParserException(left: Location, right: Location, msg: String)
extends RuntimeException(s"at ${left.getUnit}:${left.getLine}:${left.getColumn}: $msg") {
}