We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d6cc3a7 commit 3a388fdCopy full SHA for 3a388fd
libtmux/exc.py
@@ -27,6 +27,13 @@ class TmuxCommandNotFound(LibTmuxException):
27
pass
28
29
30
+class VersionTooLow(LibTmuxException):
31
+
32
+ """Raised if tmux below the minimum version to use libtmux."""
33
34
+ pass
35
36
37
class BadSessionName(LibTmuxException):
38
39
"""Disallowed session name for tmux (empty, contains periods or colons)."""
@@ -53,3 +60,10 @@ class InvalidOption(OptionError):
53
60
"""Option invalid to tmux, introduced in tmux v2.4."""
54
61
55
62
63
64
65
+class AmbiguousOption(OptionError):
66
67
+ """Option that could potentially match more than one."""
68
69
0 commit comments