summaryrefslogtreecommitdiff
path: root/tox/__init__.py
blob: 6797068a5a8a9f1a9ae176b86af339f1b40e3e60 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
#
__version__ = '1.8.2.dev1'

class exception:
    class Error(Exception):
        def __str__(self):
            return "%s: %s" %(self.__class__.__name__, self.args[0])
    class ConfigError(Error):
        """ error in tox configuration. """
    class UnsupportedInterpreter(Error):
        "signals an unsupported Interpreter"
    class InterpreterNotFound(Error):
        "signals that an interpreter could not be found"
    class InvocationError(Error):
        """ an error while invoking a script. """
    class MissingFile(Error):
        """ an error while invoking a script. """
    class MissingDirectory(Error):
        """ a directory did not exist. """
    class MissingDependency(Error):
        """ a dependency could not be found or determined. """

from tox._cmdline import main as cmdline  # noqa