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"
   ]
}

Fields:
field err_msg: Annotated[str, Field(title='Error message', alias='err_msg')] [Required] (name 'message')#
field ename: Annotated[str, Field(title='Error name', alias='ename')] [Required] (name 'name')#
field traceback: Annotated[str, Field(title='Exeception traceback')] [Required]#
field evalue: Annotated[str, Field(title='Error value', alias='evalue')] [Required] (name 'value')#