On this page
libtmux.exc.TmuxObjectDoesNotExist
- Module
- libtmux.exc
- Package
- libtmux
- Source
- src/libtmux/exc.py
- Bases:
tmux has no object with the id that was asked for.
Examples
>>> from libtmux import exc >>> str(exc.TmuxObjectDoesNotExist()) 'Could not find object'>>> str( ... exc.TmuxObjectDoesNotExist( ... obj_key="pane_id", ... obj_id="%99", ... list_cmd="list-panes", ... list_extra_args=("-t", "%99"), ... ) ... ) "Could not find pane_id=%99 for list-panes ('-t', '%99')"
1 declared, 1 inherited
Members
- __init__ method
Inherited members
Reached through libtmux.exc.LibTmuxException.
- __str__ libtmux.exc.LibTmuxException Render with optional
"<subcommand>: …"prefix.