An issue reading from the backend.
| 284 | |
| 285 | |
| 286 | class BackendGetMetaError(BackendError): |
| 287 | """An issue reading from the backend.""" |
| 288 | |
| 289 | def __init__(self, *args, **kwargs): |
| 290 | self.task_id = kwargs.get('task_id', "") |
| 291 | |
| 292 | def __repr__(self): |
| 293 | return super().__repr__() + " task_id:" + self.task_id |
| 294 | |
| 295 | |
| 296 | class BackendStoreError(BackendError): |