ru.makkarpov.scalingua.pofile.parse.LexerException.scala Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of scalingua_sjs1_2.12 Show documentation
Show all versions of scalingua_sjs1_2.12 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 LexerException(loc: Location, msg: String)
extends RuntimeException(s"at ${loc.getUnit}:${loc.getLine}:${loc.getColumn}: $msg") {
}