summaryrefslogtreecommitdiff
path: root/buildscripts/resmokelib/errors.py
blob: 6ec329c14b5c1c1ad3170558809478b0b49c1a9f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
"""
Exceptions raised by resmoke.py.
"""


class ResmokeError(Exception):
    """
    Base class for all resmoke.py exceptions.
    """
    pass


class SuiteNotFound(ResmokeError):
    """
    A suite that isn't recognized was specified.
    """
    pass


class StopExecution(ResmokeError):
    """
    Exception that is raised when resmoke.py should stop executing tests
    if failing fast is enabled.
    """
    pass


class UserInterrupt(StopExecution):
    """
    Exception that is raised when a user signals resmoke.py to
    unconditionally stop executing tests.
    """
    pass


class TestFailure(ResmokeError):
    """
    Exception that is raised by a hook in the after_test method if it
    determines the the previous test should be marked as a failure.
    """
    pass


class ServerFailure(TestFailure):
    """
    Exception that is raised by a hook in the after_test method if it
    detects that the fixture did not exit cleanly and should be marked
    as a failure.
    """
    pass


class PortAllocationError(ResmokeError):
    """
    Exception that is raised by the PortAllocator if a port is requested
    outside of the range of valid ports, or if a fixture requests more
    ports than were reserved for that job.
    """
    pass