The data associated with a particular path could not be loaded. :ivar data_path: The data path that the user attempted to load.
| 46 | |
| 47 | |
| 48 | class DataNotFoundError(BotoCoreError): |
| 49 | """ |
| 50 | The data associated with a particular path could not be loaded. |
| 51 | |
| 52 | :ivar data_path: The data path that the user attempted to load. |
| 53 | """ |
| 54 | |
| 55 | fmt = 'Unable to load data for: {data_path}' |
| 56 | |
| 57 | |
| 58 | class UnknownServiceError(DataNotFoundError): |
no outgoing calls