"""Path %(path)r is not a child of path %(base)r%(extra)s"""
281
340
365
424
self.bzrdir = bzrdir_format
366
425
367
426
427
class IncompatibleRevision(BzrNewError):
428
"""Revision is not compatible with %(repo_format)s"""
429
430
def __init__(self, repo_format):
431
BzrNewError.__init__(self)
432
self.repo_format = repo_format
433
434
368
435
class NotVersionedError(BzrNewError):
369
436
"""%(path)s is not versioned"""
370
437
def __init__(self, path):
761
828
762
829
class NoSuchExportFormat(BzrNewError):
763
830
"""Export format %(format)r not supported"""
831
764
832
def __init__(self, format):
765
833
BzrNewError.__init__(self)
766
834
self.format = format
767
835
768
836
837
838
class TooManyConcurrentRequests(BzrNewError):
839
"""The medium '%(medium)s' has reached its concurrent request limit. Be sure to finish_writing and finish_reading on the current request that is open."""