~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/errors.py

  • Committer: John Arbash Meinel
  • Date: 2007-07-20 14:28:59 UTC
  • mfrom: (2625.6.3 bzr.email_message)
  • mto: This revision was merged to the branch mainline in revision 2640.
  • Revision ID: john@arbash-meinel.com-20070720142859-a24s0khul0yw91bh
(Adeodato Simó) EmailMessage class, allowing much nicer access to Email object than stdlib

Show diffs side-by-side

added added

removed removed

Lines of Context:
198
198
        self.current = current
199
199
 
200
200
 
 
201
class InProcessTransport(BzrError):
 
202
 
 
203
    _fmt = "The transport '%(transport)s' is only accessible within this " \
 
204
        "process."
 
205
 
 
206
    def __init__(self, transport):
 
207
        self.transport = transport
 
208
 
 
209
 
201
210
class InvalidEntryName(BzrError):
202
211
    
203
212
    _fmt = "Invalid entry name: %(name)s"
334
343
    _fmt = "Error in command line options"
335
344
 
336
345
 
 
346
class BadIndexFormatSignature(BzrError):
 
347
 
 
348
    _fmt = "%(value)s is not an index of type %(_type)s."
 
349
 
 
350
    def __init__(self, value, _type):
 
351
        BzrError.__init__(self)
 
352
        self.value = value
 
353
        self._type = _type
 
354
 
 
355
 
 
356
class BadIndexData(BzrError):
 
357
 
 
358
    _fmt = "Error in data for index %(value)s."
 
359
 
 
360
    def __init__(self, value):
 
361
        BzrError.__init__(self)
 
362
        self.value = value
 
363
 
 
364
 
 
365
class BadIndexDuplicateKey(BzrError):
 
366
 
 
367
    _fmt = "The key '%(key)s' is already in index '%(index)s'."
 
368
 
 
369
    def __init__(self, key, index):
 
370
        BzrError.__init__(self)
 
371
        self.key = key
 
372
        self.index = index
 
373
 
 
374
 
 
375
class BadIndexKey(BzrError):
 
376
 
 
377
    _fmt = "The key '%(key)s' is not a valid key."
 
378
 
 
379
    def __init__(self, key):
 
380
        BzrError.__init__(self)
 
381
        self.key = key
 
382
 
 
383
 
 
384
class BadIndexOptions(BzrError):
 
385
 
 
386
    _fmt = "Could not parse options for index %(value)s."
 
387
 
 
388
    def __init__(self, value):
 
389
        BzrError.__init__(self)
 
390
        self.value = value
 
391
 
 
392
 
 
393
class BadIndexValue(BzrError):
 
394
 
 
395
    _fmt = "The value '%(value)s' is not a valid value."
 
396
 
 
397
    def __init__(self, value):
 
398
        BzrError.__init__(self)
 
399
        self.value = value
 
400
 
 
401
 
337
402
class BadOptionValue(BzrError):
338
403
 
339
404
    _fmt = """Bad value "%(value)s" for option "%(name)s"."""
1207
1272
        self.file_id = file_id
1208
1273
 
1209
1274
 
 
1275
class VersionedFileInvalidChecksum(VersionedFileError):
 
1276
 
 
1277
    _fmt = "Text did not match its checksum: %(message)s"
 
1278
 
 
1279
 
1210
1280
class KnitError(BzrError):
1211
1281
    
1212
1282
    _fmt = "Knit error"
1555
1625
        self.text_revision = text_revision
1556
1626
        self.file_id = file_id
1557
1627
 
1558
 
 
1559
1628
class DuplicateFileId(BzrError):
1560
1629
 
1561
1630
    _fmt = "File id {%(file_id)s} already exists in inventory as %(entry)s"
2059
2128
        " branch location."
2060
2129
 
2061
2130
 
 
2131
class IllegalMergeDirectivePayload(BzrError):
 
2132
    """A merge directive contained something other than a patch or bundle"""
 
2133
 
 
2134
    _fmt = "Bad merge directive payload %(start)r"
 
2135
 
 
2136
    def __init__(self, start):
 
2137
        BzrError(self)
 
2138
        self.start = start
 
2139
 
 
2140
 
 
2141
class PatchVerificationFailed(BzrError):
 
2142
    """A patch from a merge directive could not be verified"""
 
2143
 
 
2144
    _fmt = "Preview patch does not match requested changes."
 
2145
 
 
2146
 
2062
2147
class PatchMissing(BzrError):
2063
2148
    """Raise a patch type was specified but no patch supplied"""
2064
2149