~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/errors.py

  • Committer: Martin Pool
  • Date: 2005-06-20 04:24:35 UTC
  • Revision ID: mbp@sourcefrog.net-20050620042435-7c315b5a93001b89
- add jk's patchwork client

Show diffs side-by-side

added added

removed removed

Lines of Context:
39
39
    pass
40
40
 
41
41
 
42
 
class NotVersionedError(BzrError):
43
 
    """Specified object is not versioned."""
44
 
 
45
 
 
46
42
class BadFileKindError(BzrError):
47
43
    """Specified file is of a kind that cannot be added.
48
44
 
66
62
            Exception.__init__(self, e)
67
63
        else:
68
64
            Exception.__init__(self)
69
 
 
70
 
 
71
 
class PointlessCommit(Exception):
72
 
    """Commit failed because nothing was changed."""