~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/errors.py

  • Committer: Aaron Bentley
  • Date: 2006-10-29 18:30:57 UTC
  • mto: (2255.6.1 dirstate)
  • mto: This revision was merged to the branch mainline in revision 2322.
  • Revision ID: aaron.bentley@utoronto.ca-20061029183057-af9d71b62956a668
Start roundtripping tree-reference entries

Show diffs side-by-side

added added

removed removed

Lines of Context:
1365
1365
    def __init__(self, name):
1366
1366
        BzrNewError.__init__(self)
1367
1367
        self.name = name
 
1368
 
 
1369
 
 
1370
class UnsupportedInventoryKind(BzrNewError):
 
1371
    """Unsupported entry kind %(kind)s"""
 
1372
 
 
1373
    def __init__(self, kind):
 
1374
        self.kind = kind