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

java.time.format.DateTimeParseException.scala Maven / Gradle / Ivy

package java.time.format

import java.time.DateTimeException

class DateTimeParseException(message: String, parsedData: CharSequence,
    errorIndex: Int, cause: Throwable)
    extends DateTimeException(message, cause) {

  def this(message: String, parsedData: CharSequence, errorIndex: Int) =
    this(message, parsedData, errorIndex, null)

  def getErrorIndex(): Int = errorIndex
  def getParsedString(): String = parsedData.toString
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy