exception documentation

Exception raised when an option has an unexpected type.

This exception is raised by the option extraction functions when an option value does not match the expected type.

Parameters
nameThe name of the option that had the wrong type.
exp_typeThe expected type for the option value.
receivedThe actual value received.
Method __init__ Undocumented
def __init__(self, name: str, exp_type: type[T], received: Any): (source) ΒΆ

Undocumented