A general command exception which stores an exit code.
| 305 | |
| 306 | |
| 307 | class CeleryCommandException(ClickException): |
| 308 | """A general command exception which stores an exit code.""" |
| 309 | |
| 310 | def __init__(self, message, exit_code): |
| 311 | super().__init__(message=message) |
| 312 | self.exit_code = exit_code |
no outgoing calls
no test coverage detected