ConfigFieldMissingError
relationalai.config.errors.exceptions
ConfigFieldMissingError( field_path: list[str], context: ConfigErrorContext, suggestion: str | None = None)Raised when a required configuration field is missing.
This error is raised during config loading/validation when a required key
(for example connections.sf.password) is absent.
Parameters
Section titled “Parameters”
(field_pathlist[str]) - Path segments to the missing field.
(context:class:) - Where the invalid config came from (source, file, profile, connection).~relationalai.config.errors.ConfigErrorContext
(suggestionstr, default:None) - Optional config snippet showing what to add.
Attributes
Section titled “Attributes”.field_path
Section titled “.field_path”ConfigFieldMissingError.field_path: list[str]Path segments to the missing field.