The operation can not be completed because the hosting file is closed. For instance, getting an existing node from a closed file is not allowed.
| 234 | |
| 235 | |
| 236 | class ClosedFileError(ValueError): |
| 237 | """The operation can not be completed because the hosting file is closed. |
| 238 | |
| 239 | For instance, getting an existing node from a closed file is not |
| 240 | allowed. |
| 241 | |
| 242 | """ |
| 243 | |
| 244 | pass |
| 245 | |
| 246 | |
| 247 | class FileModeError(ValueError): |