For example, running the
tf.WholeFileReader.read
operation could raise PermissionDeniedError if it receives the name of a
file for which the user does not have the read file permission.
Attributes
error_code
The integer error code that describes the error.
message
The error message that describes the error.
node_def
The NodeDef proto representing the op that failed.
[[["Easy to understand","easyToUnderstand","thumb-up"],["Solved my problem","solvedMyProblem","thumb-up"],["Other","otherUp","thumb-up"]],[["Missing the information I need","missingTheInformationINeed","thumb-down"],["Too complicated / too many steps","tooComplicatedTooManySteps","thumb-down"],["Out of date","outOfDate","thumb-down"],["Samples / code issue","samplesCodeIssue","thumb-down"],["Other","otherDown","thumb-down"]],["Last updated 2020-10-01 UTC."],[],[],null,["# tf.errors.PermissionDeniedError\n\n\u003cbr /\u003e\n\n|-----------------------------------------------------------------------------------------|------------------------------------------------------------------------------------------------------------------------------------|\n| [TensorFlow 1 version](/versions/r1.15/api_docs/python/tf/errors/PermissionDeniedError) | [View source on GitHub](https://github.com/tensorflow/tensorflow/blob/v2.0.0/tensorflow/python/framework/errors_impl.py#L323-L337) |\n\nRaised when the caller does not have permission to run an operation.\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.PermissionDeniedError`](/api_docs/python/tf/errors/PermissionDeniedError)\n\n\u003cbr /\u003e\n\n tf.errors.PermissionDeniedError(\n node_def, op, message\n )\n\nFor example, running the\n`tf.WholeFileReader.read`\noperation could raise `PermissionDeniedError` if it receives the name of a\nfile for which the user does not have the read file permission.\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| `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. |"]]