package infra // ConfigError represents a single validation error for a configuration field. type ConfigError struct { Field string // struct field name or env var name Message string // human-readable error description Tag string // validation tag that triggered the error (e.g. "required", "format") }