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

pureconfig.module.yaml.error.NonStringKeyFound.scala Maven / Gradle / Ivy

There is a newer version: 0.17.7
Show newest version
package pureconfig.module.yaml.error

import pureconfig.error.ConfigReaderFailure

case class NonStringKeyFound(value: String, keyType: String) extends ConfigReaderFailure {
  def description = s"Cannot read YAML key '$value' (with type $keyType). PureConfig only supports string keys."
  def location = None
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy