akka.stream.alpakka.csv.model.scala Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of akka-stream-alpakka-csv_3 Show documentation
Show all versions of akka-stream-alpakka-csv_3 Show documentation
Alpakka is a Reactive Enterprise Integration library for Java and Scala, based on Reactive Streams and Akka.
/*
* Copyright (C) since 2016 Lightbend Inc.
*/
package akka.stream.alpakka.csv
class MalformedCsvException private[csv] (val lineNo: Long, val bytePos: Int, msg: String) extends Exception(msg) {
/**
* Java API:
* Returns the line number where the parser failed.
*/
def getLineNo = lineNo
/**
* Java API:
* Returns the byte within the parsed line where the parser failed.
*/
def getBytePos = bytePos
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy