NotebookExecutionErrorModel#

pydantic model rubin.nublado.client.NotebookExecutionErrorModel#

The error from the /user/:username/rubin/execution endpoint.

Parameters:

data (Any)

Show JSON schema
{
   "title": "NotebookExecutionErrorModel",
   "description": "The error from the ``/user/:username/rubin/execution`` endpoint.",
   "type": "object",
   "properties": {
      "traceback": {
         "description": "The exeception traceback.",
         "title": "Traceback",
         "type": "string"
      },
      "ename": {
         "description": "The exception name.",
         "title": "Ename",
         "type": "string"
      },
      "evalue": {
         "description": "The exception value.",
         "title": "Evalue",
         "type": "string"
      },
      "err_msg": {
         "description": "The exception message.",
         "title": "Err Msg",
         "type": "string"
      }
   },
   "required": [
      "traceback",
      "ename",
      "evalue",
      "err_msg"
   ]
}

Fields:
field ename: Annotated[str, Field(description='The exception name.')] [Required]#

The exception name.

field err_msg: Annotated[str, Field(description='The exception message.')] [Required]#

The exception message.

field evalue: Annotated[str, Field(description='The exception value.')] [Required]#

The exception value.

field traceback: Annotated[str, Field(description='The exeception traceback.')] [Required]#

The exeception traceback.