~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/errors.py

  • Committer: Aaron Bentley
  • Date: 2006-02-24 21:57:55 UTC
  • mto: (2027.1.2 revert-subpath-56549)
  • mto: This revision was merged to the branch mainline in revision 1595.
  • Revision ID: abentley@panoramicfeedback.com-20060224215755-0147b9bf4e26322a
Cleanups

Show diffs side-by-side

added added

removed removed

Lines of Context:
259
259
    def __init__(self, format):
260
260
        self.format = format
261
261
 
 
262
 
262
263
class MalformedSplatDict(BzrNewError):
263
264
    """Splat dict has %(val_len)d values, instead of 2.  (%(values)r)"""
264
265
    def __init__(self, values):
265
266
        self.values = values
266
267
        self.val_len = len(values)
267
268
 
 
269
 
268
270
class NotVersionedError(BzrNewError):
269
271
    """%(path)s is not versioned"""
270
272
    def __init__(self, path):