io.datalbry.precise.serialization.jackson.exception.InvalidEnumValueException.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of precise-serialization-jackson Show documentation
Show all versions of precise-serialization-jackson Show documentation
Precise is just another data serialization framework
package io.datalbry.precise.serialization.jackson.exception
import io.datalbry.precise.api.schema.type.EnumType
class InvalidEnumValueException(type: EnumType, value: String) :
IllegalArgumentException("Value [${value}] is not contained by type [${type.name}] with values [${type.values}]")