An issue writing to the backend.
| 294 | |
| 295 | |
| 296 | class BackendStoreError(BackendError): |
| 297 | """An issue writing to the backend.""" |
| 298 | |
| 299 | def __init__(self, *args, **kwargs): |
| 300 | self.state = kwargs.get('state', "") |
| 301 | self.task_id = kwargs.get('task_id', "") |
| 302 | |
| 303 | def __repr__(self): |
| 304 | return super().__repr__() + " state:" + self.state + " task_id:" + self.task_id |
| 305 | |
| 306 | |
| 307 | class CeleryCommandException(ClickException): |
no outgoing calls
no test coverage detected