jsonkraken / net.jemzart.jsonkraken.errors.transformation / UnexpectedJsonValueException

UnexpectedJsonValueException

class UnexpectedJsonValueException : JsonKrakenException

Since
2.0 An exception used for when a specific type of JsonValue was expected, but received another.

Constructors

<init>

UnexpectedJsonValueException(expected: KClass<out JsonValue>, actual: KClass<out JsonValue>)

Properties

actual

val actual: KClass<out JsonValue>

the actual type of the JsonValue.

expected

val expected: KClass<out JsonValue>

the expected type of the JsonValue.