/b-gtk/fix-viz

To get this branch, use:
bzr branch http://gegoxaren.bato24.eu/bzr/b-gtk/fix-viz
0.8.1 by Szilveszter Farkas (Phanatic)
* backend/errors.py: some basic exceptions added
1
# Copyright (C) 2006 by Szilveszter Farkas (Phanatic)
2
# Some parts of the code are:
3
# Copyright (C) 2005, 2006 by Canonical Ltd
4
5
# This program is free software; you can redistribute it and/or modify
6
# it under the terms of the GNU General Public License as published by
7
# the Free Software Foundation; either version 2 of the License, or
8
# (at your option) any later version.
9
10
# This program is distributed in the hope that it will be useful,
11
# but WITHOUT ANY WARRANTY; without even the implied warranty of
12
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
13
# GNU General Public License for more details.
14
15
# You should have received a copy of the GNU General Public License
16
# along with this program; if not, write to the Free Software
17
# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
18
19
class OliveError(Exception):
20
    """ Parent class for Olive exceptions/errors """
21
    pass
22
23
class AlreadyBranchError(OliveError):
0.8.2 by Szilveszter Farkas (Phanatic)
* backend/commit.py: commit() implemented
24
    """ The specified directory is already a branch
25
    
26
    May occur in:
27
        init.init()
28
    """
29
30
class BoundBranchOutOfDate(OliveError):
31
    """ Occurs if the bound branch is out of date
32
    
33
    May occur in:
34
        commit.commit()
35
    """
0.8.1 by Szilveszter Farkas (Phanatic)
* backend/errors.py: some basic exceptions added
36
37
class BranchExistsWithoutWorkingTree(OliveError):
0.8.2 by Szilveszter Farkas (Phanatic)
* backend/commit.py: commit() implemented
38
    """ The specified directory is a branch, however it doesn't contain a working tree
39
    
40
    May occur in:
41
        init.init()
42
    """
43
44
class ConflictsInTreeError(OliveError):
45
    """ Occurs if non-resolved conflicts remained in the tree
46
    
47
    May occur in:
48
        commit.commit()
49
    """
0.8.1 by Szilveszter Farkas (Phanatic)
* backend/errors.py: some basic exceptions added
50
51
class DirectoryAlreadyExists(OliveError):
0.8.2 by Szilveszter Farkas (Phanatic)
* backend/commit.py: commit() implemented
52
    """ The specified directory already exists
53
    
54
    May occur in:
55
        fileops.mkdir()
56
    """
57
0.8.3 by Szilveszter Farkas (Phanatic)
* backend/init.py: checkout() implemented - not tested yet
58
class DivergedBranchesError(OliveError):
59
    """ The branches have been diverged
60
    
61
    May occur in:
62
        commit.push()
63
    """
64
0.8.2 by Szilveszter Farkas (Phanatic)
* backend/commit.py: commit() implemented
65
class EmptyMessageError(OliveError):
66
    """ Occurs if no commit message specified
67
    
68
    May occur in:
69
        commit.commit()
70
    """
71
72
class LocalRequiresBoundBranch(OliveError):
73
    """ Occurs when the local branch needs a bound branch
74
    
75
    May occur in:
76
        commit.commit()
77
    """
78
79
class NoChangesToCommitError(OliveError):
80
    """ Occurs if there are no changes to commit
81
    
82
    May occur in:
83
        commit.commit()
84
    """
85
86
class NoFilesSpecified(OliveError):
87
    """ No files were specified as an argument to a function
88
    
89
    May occur in:
90
        fileops.remove()
91
    """
92
0.8.7 by Szilveszter Farkas (Phanatic)
2006-06-20 Szilveszter Farkas <Szilveszter.Farkas@gmail.com>
93
class NoLocationKnown(OliveError):
94
    """ No location known or specified
95
    
96
    May occur in:
97
        commit.push()
98
        init.pull()
99
    """
100
0.8.2 by Szilveszter Farkas (Phanatic)
* backend/commit.py: commit() implemented
101
class NoMatchingFiles(OliveError):
102
    """ No files found which could match the criteria
103
    
104
    May occur in:
105
        fileops.remove()
106
    """
107
108
class NoMessageNoFileError(OliveError):
109
    """ No message and no file given (for commit)
110
    
111
    May occur in:
112
        commit.commit()
113
    """
0.8.1 by Szilveszter Farkas (Phanatic)
* backend/errors.py: some basic exceptions added
114
115
class NonExistingParent(OliveError):
0.8.2 by Szilveszter Farkas (Phanatic)
* backend/commit.py: commit() implemented
116
    """ Parent directory doesn't exist
117
    
118
    May occur in:
119
        init.branch()
0.8.3 by Szilveszter Farkas (Phanatic)
* backend/init.py: checkout() implemented - not tested yet
120
        init.checkout()
121
        commit.push()
0.8.2 by Szilveszter Farkas (Phanatic)
* backend/commit.py: commit() implemented
122
    """
0.8.1 by Szilveszter Farkas (Phanatic)
* backend/errors.py: some basic exceptions added
123
124
class NonExistingRevision(OliveError):
0.8.2 by Szilveszter Farkas (Phanatic)
* backend/commit.py: commit() implemented
125
    """ The specified revision doesn't exist in the branch
126
    
127
    May occur in:
128
        init.branch()
129
    """
0.8.1 by Szilveszter Farkas (Phanatic)
* backend/errors.py: some basic exceptions added
130
131
class NonExistingSource(OliveError):
0.8.2 by Szilveszter Farkas (Phanatic)
* backend/commit.py: commit() implemented
132
    """ The source provided doesn't exist
133
    
134
    May occur in:
135
        init.branch()
136
    """
137
138
class NotBranchError(OliveError):
139
    """ Specified directory is not a branch
140
    
141
    May occur in:
142
        commit.commit()
143
    """
144
145
class NotVersionedError(OliveError):
146
    """ Occurs if the specified file/directory is not in the branch
147
    
148
    May occur in:
149
        fileops.remove()
150
    """
0.8.1 by Szilveszter Farkas (Phanatic)
* backend/errors.py: some basic exceptions added
151
0.8.3 by Szilveszter Farkas (Phanatic)
* backend/init.py: checkout() implemented - not tested yet
152
class PathPrefixNotCreated(OliveError):
153
    """ The path prefix couldn't be created
154
    
155
    May occur in:
156
        commit.push()
157
    """
158
0.8.1 by Szilveszter Farkas (Phanatic)
* backend/errors.py: some basic exceptions added
159
class RevisionValueError(OliveError):
0.8.2 by Szilveszter Farkas (Phanatic)
* backend/commit.py: commit() implemented
160
    """ Invalid revision value provided
161
    
162
    May occur in:
163
    """
164
165
class StrictCommitError(OliveError):
166
    """ Occurs if strict commit fails
167
    
168
    May occur in:
169
        commit.commit()
170
    """
0.8.1 by Szilveszter Farkas (Phanatic)
* backend/errors.py: some basic exceptions added
171
172
class TargetAlreadyExists(OliveError):
0.8.2 by Szilveszter Farkas (Phanatic)
* backend/commit.py: commit() implemented
173
    """ Target directory already exists
174
    
175
    May occur in:
176
        init.branch()
0.8.3 by Szilveszter Farkas (Phanatic)
* backend/init.py: checkout() implemented - not tested yet
177
        init.checkout()
0.8.2 by Szilveszter Farkas (Phanatic)
* backend/commit.py: commit() implemented
178
    """