/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 bzrlib/errors.py

  • Committer: Aaron Bentley
  • Date: 2006-08-24 03:35:48 UTC
  • mto: (1910.2.43 format-bumps)
  • mto: This revision was merged to the branch mainline in revision 1997.
  • Revision ID: aaron.bentley@utoronto.ca-20060824033548-104450f485b42c75
Fix bugs in basis inventory handling, change filename

Show diffs side-by-side

added added

removed removed

Lines of Context:
1110
1110
 
1111
1111
    def __init__(self):
1112
1112
        BzrNewError.__init__(self)    
 
1113
 
 
1114
 
 
1115
class BadInventoryFormat(BzrNewError):
 
1116
    """Root class for inventory serialization errors"""
 
1117
 
 
1118
 
 
1119
class UnexpectedInventoryFormat(BadInventoryFormat):
 
1120
    """The inventory was not in the expected format:\n %(msg)s"""
 
1121
 
 
1122
    def __init__(self, msg):
 
1123
        BadInventoryFormat.__init__(self, msg=msg)