~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/errors.py

  • Committer: Canonical.com Patch Queue Manager
  • Date: 2007-07-17 11:02:03 UTC
  • mfrom: (2592.1.46 index)
  • Revision ID: pqm@pqm.ubuntu.com-20070717110203-zzmtp28nunhsoz12
(robertc) New indexing facilities for maintaining dedicated indices within bzr.

Show diffs side-by-side

added added

removed removed

Lines of Context:
334
334
    _fmt = "Error in command line options"
335
335
 
336
336
 
 
337
class BadIndexFormatSignature(BzrError):
 
338
 
 
339
    _fmt = "%(value)s is not an index of type %(_type)s."
 
340
 
 
341
    def __init__(self, value, _type):
 
342
        BzrError.__init__(self)
 
343
        self.value = value
 
344
        self._type = _type
 
345
 
 
346
 
 
347
class BadIndexData(BzrError):
 
348
 
 
349
    _fmt = "Error in data for index %(value)s."
 
350
 
 
351
    def __init__(self, value):
 
352
        BzrError.__init__(self)
 
353
        self.value = value
 
354
 
 
355
 
 
356
class BadIndexDuplicateKey(BzrError):
 
357
 
 
358
    _fmt = "The key '%(key)s' is already in index '%(index)s'."
 
359
 
 
360
    def __init__(self, key, index):
 
361
        BzrError.__init__(self)
 
362
        self.key = key
 
363
        self.index = index
 
364
 
 
365
 
 
366
class BadIndexKey(BzrError):
 
367
 
 
368
    _fmt = "The key '%(key)s' is not a valid key."
 
369
 
 
370
    def __init__(self, key):
 
371
        BzrError.__init__(self)
 
372
        self.key = key
 
373
 
 
374
 
 
375
class BadIndexOptions(BzrError):
 
376
 
 
377
    _fmt = "Could not parse options for index %(value)s."
 
378
 
 
379
    def __init__(self, value):
 
380
        BzrError.__init__(self)
 
381
        self.value = value
 
382
 
 
383
 
 
384
class BadIndexValue(BzrError):
 
385
 
 
386
    _fmt = "The value '%(value)s' is not a valid value."
 
387
 
 
388
    def __init__(self, value):
 
389
        BzrError.__init__(self)
 
390
        self.value = value
 
391
 
 
392
 
337
393
class BadOptionValue(BzrError):
338
394
 
339
395
    _fmt = """Bad value "%(value)s" for option "%(name)s"."""
1555
1611
        self.text_revision = text_revision
1556
1612
        self.file_id = file_id
1557
1613
 
1558
 
 
1559
1614
class DuplicateFileId(BzrError):
1560
1615
 
1561
1616
    _fmt = "File id {%(file_id)s} already exists in inventory as %(entry)s"