CeleryCommandException
A general command exception which stores an exit code.
Attributes
| Attribute | Type | Description |
|---|---|---|
| exit_code | int | The numeric status code returned to the operating system when the command fails. |
Constructor
Signature
def CeleryCommandException(
message: string,
exit_code: integer
) - > null
Parameters
| Name | Type | Description |
|---|---|---|
| message | string | The error message describing the exception. |
| exit_code | integer | The numeric exit code associated with the command failure. |
Signature
def CeleryCommandException(
message: string,
exit_code: integer
) - > null
Parameters
| Name | Type | Description |
|---|---|---|
| message | string | The human-readable error message describing the command failure |
| exit_code | integer | The numeric status code to be returned to the operating system upon process termination |