ComputeError
- pydantic model qcelemental.models.v2.ComputeError[source]
Complete description of the error from an unsuccessful program execution.
Show JSON schema
{ "title": "ComputeError", "description": "Complete description of the error from an unsuccessful program execution.", "type": "object", "properties": { "error_type": { "description": "The type of error which was thrown. Restrict this field to short classifiers e.g. 'input_error'. Suggested classifiers: https://github.com/MolSSI/QCEngine/blob/master/qcengine/exceptions.py", "title": "Error Type", "type": "string" }, "error_message": { "description": "Text associated with the thrown error. This is often the backtrace, but it can contain additional information as well.", "title": "Error Message", "type": "string" }, "extras": { "anyOf": [ { "additionalProperties": true, "type": "object" }, { "type": "null" } ], "default": null, "description": "Additional information to bundle with the error.", "title": "Extras" } }, "additionalProperties": false, "required": [ "error_type", "error_message" ] }
- field error_message: str [Required]
Text associated with the thrown error. This is often the backtrace, but it can contain additional information as well.
- field error_type: str [Required]
The type of error which was thrown. Restrict this field to short classifiers e.g. ‘input_error’. Suggested classifiers: https://github.com/MolSSI/QCEngine/blob/master/qcengine/exceptions.py