/b-gtk/fix-viz

To get this branch, use:
bzr branch http://gegoxaren.bato24.eu/bzr/b-gtk/fix-viz

« back to all changes in this revision

Viewing changes to olive/backend/errors.py

  • Committer: Szilveszter Farkas (Phanatic)
  • Date: 2006-09-11 02:56:58 UTC
  • mto: (0.14.1 main) (93.1.1 win32.bialix)
  • mto: This revision was merged to the branch mainline in revision 83.
  • Revision ID: Szilveszter.Farkas@gmail.com-20060911025658-997cf3a305b9f1da
A better implementation for the drive selection. (OptionMenu didn't work on Win32)

Show diffs side-by-side

added added

removed removed

Lines of Context:
48
48
        commit.commit()
49
49
    """
50
50
 
 
51
class ConnectionError(OliveError):
 
52
    """ Occurs if cannot connect to remote host
 
53
    
 
54
    May occur in:
 
55
        update.missing()
 
56
    """
 
57
 
51
58
class DifferentBranchesError(OliveError):
52
59
    """ Occurs if the specified files are in different branches
53
60
    
187
194
        commit.push()
188
195
    """
189
196
 
 
197
class PermissionDenied(OliveError):
 
198
    """ Permission denied.
 
199
    
 
200
    May occur in:
 
201
        fileops.status()
 
202
    """
 
203
 
190
204
class PrefixFormatError(OliveError):
191
205
    """ Occurs if the prefix is badly formatted
192
206