ConfigurationException

class ConfigurationException(val field: String, val expected: String, val actual: String) : IllegalArgumentException

Exception thrown when configuration parsing fails. Provides clear context about which field failed and why.

Constructors

Link copied to clipboard
constructor(field: String, expected: String, actual: String)

Properties

Link copied to clipboard

Description of what was actually found

Link copied to clipboard
open val cause: Throwable?
Link copied to clipboard

Description of what type/value was expected

Link copied to clipboard

The name of the configuration field that failed

Link copied to clipboard
Link copied to clipboard
open val message: String?
Link copied to clipboard
Link copied to clipboard