| 70 | |
| 71 | |
| 72 | class DataSourceNotFoundException(FeastError): |
| 73 | def __init__(self, path): |
| 74 | super().__init__( |
| 75 | f"Unable to find table at '{path}'. Please check that table exists." |
| 76 | ) |
| 77 | |
| 78 | |
| 79 | class DataSourceNoNameException(FeastError): |
no outgoing calls
no test coverage detected