/brz/remove-bazaar

To get this branch, use:
bzr branch http://gegoxaren.bato24.eu/bzr/brz/remove-bazaar

« back to all changes in this revision

Viewing changes to dulwich/errors.py

  • Committer: Jelmer Vernooij
  • Date: 2008-12-11 10:52:43 UTC
  • mto: (0.215.1 trunk)
  • mto: This revision was merged to the branch mainline in revision 6960.
  • Revision ID: jelmer@samba.org-20081211105243-dokx6i1dofwnlrrm
Add simple pack dump utility.

Show diffs side-by-side

added added

removed removed

Lines of Context:
50
50
  def __init__(self, sha, *args, **kwargs):
51
51
    Exception.__init__(self, "%s is not in the revision store" % sha)
52
52
 
53
 
 
54
 
class ObjectMissing(Exception):
55
 
  """Indicates that a requested object is missing."""
56
 
 
57
 
  def __init__(self, sha, *args, **kwargs):
58
 
    Exception.__init__(self, "%s is not in the pack" % sha)
59
 
 
60
 
 
61
 
class ApplyDeltaError(Exception):
62
 
    """Indicates that applying a delta failed."""
63
 
    
64
 
    def __init__(self, *args, **kwargs):
65
 
        Exception.__init__(self, *args, **kwargs)
66
 
 
67
 
 
68
 
class NotGitRepository(Exception):
69
 
    """Indicates that no Git repository was found."""
70
 
 
71
 
    def __init__(self, *args, **kwargs):
72
 
        Exception.__init__(self, *args, **kwargs)