Problems with doing/redoing actions with Undo/Redo feature. This exception indicates a problem related to the Undo/Redo mechanism, such as trying to undo or redo actions with this mechanism disabled, or going to a nonexistent mark.
| 290 | |
| 291 | |
| 292 | class UndoRedoError(Exception): |
| 293 | """Problems with doing/redoing actions with Undo/Redo feature. |
| 294 | |
| 295 | This exception indicates a problem related to the Undo/Redo |
| 296 | mechanism, such as trying to undo or redo actions with this |
| 297 | mechanism disabled, or going to a nonexistent mark. |
| 298 | |
| 299 | """ |
| 300 | |
| 301 | pass |
| 302 | |
| 303 | |
| 304 | class UndoRedoWarning(Warning): |
no outgoing calls
no test coverage detected