summaryrefslogtreecommitdiff
path: root/tox/__init__.py
diff options
context:
space:
mode:
Diffstat (limited to 'tox/__init__.py')
-rw-r--r--tox/__init__.py6
1 files changed, 6 insertions, 0 deletions
diff --git a/tox/__init__.py b/tox/__init__.py
index c17341d..6991c90 100644
--- a/tox/__init__.py
+++ b/tox/__init__.py
@@ -23,5 +23,11 @@ class exception:
""" a directory did not exist. """
class MissingDependency(Error):
""" a dependency could not be found or determined. """
+ class MinVersionError(Error):
+ """ the installed tox version is lower than requested minversion. """
+
+ def __init__(self, message):
+ self.message = message
+ super(exception.MinVersionError, self).__init__(message)
from tox.session import main as cmdline # noqa