Skip to content

ConfigError

relationalai.config.errors.exceptions
ConfigError(message: str, context: ConfigErrorContext | None = None)

Represents a configuration error.

Config loading and validation objects raise subclasses of this exception.

  • message

    (str) - Human-readable error message.
  • context

    (:class:~relationalai.config.errors.ConfigErrorContext, default: None) - Location information (file, profile, connection) when known.
ConfigError.message: str

Human-readable error message.

ConfigError.context: :class:`~relationalai.config.errors.ConfigErrorContext`, optional

Location information (file, profile, connection) when known.

ConfigErrorbuiltins.Exception