designspace.ParamError#
- class designspace.ParamError(param: str, reason: str, value: Any | None)#
Bases:
objectOne parameter’s value rejected during validation.
About the value itself: wrong type, out of domain, present while inactive, absent while active. A configuration whose parameters are all individually fine may still be infeasible; that shows up in ValidationResult.constraint_evals, not here.
- value#
The rejected value, or None when the problem is its absence.
- Type:
Any | None