NotebookExecutionError#
- pydantic model rubin.nublado.client.NotebookExecutionError#
An error from the notebook execution extension endpoint.
- Parameters:
data (
Any)
Show JSON schema
{ "title": "NotebookExecutionError", "description": "An error from the notebook execution extension endpoint.", "type": "object", "properties": { "ename": { "title": "Error name", "type": "string" }, "evalue": { "title": "Error value", "type": "string" }, "err_msg": { "title": "Error message", "type": "string" }, "traceback": { "title": "Exeception traceback", "type": "string" } }, "required": [ "ename", "evalue", "err_msg", "traceback" ] }