MCPcopy
hub / github.com/feast-dev/feast / FeastConfigError

Class FeastConfigError

sdk/python/feast/repo_config.py:697–709  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

695
696
697class FeastConfigError(Exception):
698 def __init__(self, error_message, config_path):
699 self._error_message = error_message
700 self._config_path = config_path
701 super().__init__(self._error_message)
702
703 def __str__(self) -> str:
704 return f"{self._error_message}\nat {self._config_path}"
705
706 def __repr__(self) -> str:
707 return (
708 f"FeastConfigError({repr(self._error_message)}, {repr(self._config_path)})"
709 )
710
711
712def get_data_source_class_from_type(data_source_type: str):

Callers 1

load_repo_configFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected