[null,null,["Last updated 2024-04-26 UTC."],[],[],null,["# tf.errors.CancelledError\n\n\u003cbr /\u003e\n\n|-------------------------------------------------------------------------------------------------------------------------------------|\n| [View source on GitHub](https://github.com/tensorflow/tensorflow/blob/v2.16.1/tensorflow/python/framework/errors_impl.py#L227-L251) |\n\nRaised when an operation is cancelled.\n\nInherits From: [`OpError`](../../tf/errors/OpError)\n\n#### View aliases\n\n\n**Compat aliases for migration**\n\nSee\n[Migration guide](https://www.tensorflow.org/guide/migrate) for\nmore details.\n\n[`tf.compat.v1.errors.CancelledError`](https://www.tensorflow.org/api_docs/python/tf/errors/CancelledError)\n\n\u003cbr /\u003e\n\n tf.errors.CancelledError(\n node_def, op, message, *args\n )\n\nFor example, a long-running operation e.g.[`tf.queue.QueueBase.enqueue`](../../tf/queue/QueueBase#enqueue), or a\n[`tf.function`](../../tf/function) call may be cancelled by either running another operation e.g.\n[`tf.queue.QueueBase.close`](../../tf/queue/QueueBase#close) or a remote worker failure.\n\nThis long-running operation will fail by raising `CancelledError`.\n\n#### Example:\n\n q = tf.queue.FIFOQueue(10, tf.float32, ((),))\n q.enqueue((10.0,))\n q.close()\n q.enqueue((10.0,))\n Traceback (most recent call last):\n\n CancelledError: ...\n\n\u003cbr /\u003e\n\n\u003cbr /\u003e\n\n\u003cbr /\u003e\n\n| Attributes ---------- ||\n|-------------------------|-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|\n| `error_code` | The integer error code that describes the error. |\n| `experimental_payloads` | A dictionary describing the details of the error. |\n| `message` | The error message that describes the error. |\n| `node_def` | The `NodeDef` proto representing the op that failed. |\n| `op` | The operation that failed, if known. \u003cbr /\u003e | **Note:** If the failed op was synthesized at runtime, e.g. a `Send` or `Recv` op, there will be no corresponding [`tf.Operation`](../../tf/Operation) object. In that case, this will return `None`, and you should instead use the [`tf.errors.OpError.node_def`](../../tf/errors/OpError#node_def) to discover information about the op. |"]]