~launchpad-pqm/launchpad/devel

« back to all changes in this revision

Viewing changes to lib/lp/registry/errors.py

Fix lint.

Show diffs side-by-side

added added

removed removed

Lines of Context:
5
5
__all__ = [
6
6
    'DistroSeriesDifferenceError',
7
7
    'NotADerivedSeriesError',
 
8
    'MultipleParentsForDerivedSeriesError',
8
9
    'CannotTransitionToCountryMirror',
9
10
    'CountryMirrorAlreadySet',
10
11
    'DeleteSubscriptionError',
11
 
    'InvalidName',
12
12
    'JoinNotAllowed',
13
13
    'MirrorNotOfficial',
14
14
    'MirrorHasNoHTTPURL',
16
16
    'NameAlreadyTaken',
17
17
    'NoSuchDistroSeries',
18
18
    'NoSuchSourcePackageName',
19
 
    'OpenTeamLinkageError',
20
19
    'PPACreationError',
21
20
    'PrivatePersonLinkageError',
22
21
    'TeamMembershipTransitionError',
39
38
    """An attempt was made to link a private person/team to something."""
40
39
 
41
40
 
42
 
@error_status(httplib.FORBIDDEN)
43
 
class OpenTeamLinkageError(ValueError):
44
 
    """An attempt was made to link an open team to something."""
45
 
 
46
 
 
47
41
@error_status(httplib.CONFLICT)
48
42
class NameAlreadyTaken(Exception):
49
43
    """The name given for a person is already in use by other person."""
50
44
 
51
45
 
52
 
class InvalidName(Exception):
53
 
    """The name given for a person is not valid."""
54
 
 
55
 
 
56
46
class NoSuchDistroSeries(NameLookupFailed):
57
47
    """Raised when we try to find a DistroSeries that doesn't exist."""
58
48
    _message_prefix = "No such distribution series"
134
124
    non-derived series - that is, a distroseries with a null Parent."""
135
125
 
136
126
 
 
127
class MultipleParentsForDerivedSeriesError(Exception):
 
128
    """A distro series difference must have one parent series set.
 
129
 
 
130
    This is raised when a DistroSeriesDifference is created, and we can't
 
131
    determine the parent series to use, since there is more than one. The
 
132
    parent series needs to be specified in this case."""
 
133
 
 
134
 
137
135
@error_status(httplib.BAD_REQUEST)
138
136
class TeamMembershipTransitionError(ValueError):
139
137
    """Indicates something has gone wrong with the transtiion.