577
525
class InvalidURLJoin(PathError):
579
_fmt = "Invalid URL join request: %(reason)s: %(base)r + %(join_args)r"
581
def __init__(self, reason, base, join_args):
584
self.join_args = join_args
585
PathError.__init__(self, base, reason)
588
class InvalidRebaseURLs(PathError):
590
_fmt = "URLs differ by more than path: %(from_)r and %(to)r"
592
def __init__(self, from_, to):
595
PathError.__init__(self, from_, 'URLs differ by more than path.')
598
class UnavailableRepresentation(InternalBzrError):
600
_fmt = ("The encoding '%(wanted)s' is not available for key %(key)s which "
601
"is encoded as '%(native)s'.")
603
def __init__(self, key, wanted, native):
604
InternalBzrError.__init__(self)
527
_fmt = 'Invalid URL join request: "%(args)s"%(extra)s'
529
def __init__(self, msg, base, args):
530
PathError.__init__(self, base, msg)
531
self.args = [base] + list(args)
610
534
class UnknownHook(BzrError):
625
549
PathError.__init__(self, url, extra=extra)
628
class UnstackableBranchFormat(BzrError):
630
_fmt = ("The branch '%(url)s'(%(format)s) is not a stackable format. "
631
"You will need to upgrade the branch to permit branch stacking.")
633
def __init__(self, format, url):
634
BzrError.__init__(self)
639
class UnstackableRepositoryFormat(BzrError):
641
_fmt = ("The repository '%(url)s'(%(format)s) is not a stackable format. "
642
"You will need to upgrade the repository to permit branch stacking.")
644
def __init__(self, format, url):
645
BzrError.__init__(self)
650
552
class ReadError(PathError):
652
554
_fmt = """Error reading from %(path)r."""
1115
1009
BzrError.__init__(self, branch=branch, revision=revision)
1012
# zero_ninetyone: this exception is no longer raised and should be removed
1013
class NotLeftParentDescendant(InternalBzrError):
1015
_fmt = ("Revision %(old_revision)s is not the left parent of"
1016
" %(new_revision)s, but branch %(branch_location)s expects this")
1018
def __init__(self, branch, old_revision, new_revision):
1019
BzrError.__init__(self, branch_location=branch.base,
1020
old_revision=old_revision,
1021
new_revision=new_revision)
1118
1024
class RangeInChangeOption(BzrError):
1120
1026
_fmt = "Option --change does not accept revision ranges"
1513
1405
self.details = details
1516
class UnexpectedProtocolVersionMarker(TransportError):
1518
_fmt = "Received bad protocol version marker: %(marker)r"
1520
def __init__(self, marker):
1521
self.marker = marker
1524
class UnknownSmartMethod(InternalBzrError):
1526
_fmt = "The server does not recognise the '%(verb)s' request."
1528
def __init__(self, verb):
1532
class SmartMessageHandlerError(InternalBzrError):
1534
_fmt = "The message handler raised an exception: %(exc_value)s."
1536
def __init__(self, exc_info):
1537
self.exc_type, self.exc_value, self.tb = exc_info
1540
1408
# A set of semi-meaningful errors which can be thrown
1541
1409
class TransportNotPossible(TransportError):
2704
2446
display_url = urlutils.unescape_for_display(
2705
2447
tree.bzrdir.root_transport.base, 'ascii')
2706
2448
BzrError.__init__(self, tree=tree, display_url=display_url)
2709
class MissingTemplateVariable(BzrError):
2711
_fmt = 'Variable {%(name)s} is not available.'
2713
def __init__(self, name):
2717
class NoTemplate(BzrError):
2719
_fmt = 'No template specified.'
2722
class UnableCreateSymlink(BzrError):
2724
_fmt = 'Unable to create symlink %(path_str)son this platform'
2726
def __init__(self, path=None):
2730
path_str = repr(str(path))
2731
except UnicodeEncodeError:
2732
path_str = repr(path)
2734
self.path_str = path_str
2737
class UnsupportedTimezoneFormat(BzrError):
2739
_fmt = ('Unsupported timezone format "%(timezone)s", '
2740
'options are "utc", "original", "local".')
2742
def __init__(self, timezone):
2743
self.timezone = timezone
2746
class CommandAvailableInPlugin(StandardError):
2748
internal_error = False
2750
def __init__(self, cmd_name, plugin_metadata, provider):
2752
self.plugin_metadata = plugin_metadata
2753
self.cmd_name = cmd_name
2754
self.provider = provider
2758
_fmt = ('"%s" is not a standard bzr command. \n'
2759
'However, the following official plugin provides this command: %s\n'
2760
'You can install it by going to: %s'
2761
% (self.cmd_name, self.plugin_metadata['name'],
2762
self.plugin_metadata['url']))
2767
class NoPluginAvailable(BzrError):
2771
class NotATerminal(BzrError):
2773
_fmt = 'Unable to ask for a password without real terminal.'
2776
class UnableEncodePath(BzrError):
2778
_fmt = ('Unable to encode %(kind)s path %(path)r in '
2779
'user encoding %(user_encoding)s')
2781
def __init__(self, path, kind):
2784
self.user_encoding = osutils.get_user_encoding()
2787
class NoSuchAlias(BzrError):
2789
_fmt = ('The alias "%(alias_name)s" does not exist.')
2791
def __init__(self, alias_name):
2792
BzrError.__init__(self, alias_name=alias_name)
2795
class DirectoryLookupFailure(BzrError):
2796
"""Base type for lookup errors."""
2801
class InvalidLocationAlias(DirectoryLookupFailure):
2803
_fmt = '"%(alias_name)s" is not a valid location alias.'
2805
def __init__(self, alias_name):
2806
DirectoryLookupFailure.__init__(self, alias_name=alias_name)
2809
class UnsetLocationAlias(DirectoryLookupFailure):
2811
_fmt = 'No %(alias_name)s location assigned.'
2813
def __init__(self, alias_name):
2814
DirectoryLookupFailure.__init__(self, alias_name=alias_name[1:])
2817
class CannotBindAddress(BzrError):
2819
_fmt = 'Cannot bind address "%(host)s:%(port)i": %(orig_error)s.'
2821
def __init__(self, host, port, orig_error):
2822
BzrError.__init__(self, host=host, port=port,
2823
orig_error=orig_error[1])
2826
class UnknownRules(BzrError):
2828
_fmt = ('Unknown rules detected: %(unknowns_str)s.')
2830
def __init__(self, unknowns):
2831
BzrError.__init__(self, unknowns_str=", ".join(unknowns))
2834
class HookFailed(BzrError):
2835
"""Raised when a pre_change_branch_tip hook function fails anything other
2836
than TipChangeRejected.
2839
_fmt = ("Hook '%(hook_name)s' during %(hook_stage)s failed:\n"
2840
"%(traceback_text)s%(exc_value)s")
2842
def __init__(self, hook_stage, hook_name, exc_info):
2844
self.hook_stage = hook_stage
2845
self.hook_name = hook_name
2846
self.exc_info = exc_info
2847
self.exc_type = exc_info[0]
2848
self.exc_value = exc_info[1]
2849
self.exc_tb = exc_info[2]
2850
self.traceback_text = ''.join(traceback.format_tb(self.exc_tb))
2853
class TipChangeRejected(BzrError):
2854
"""A pre_change_branch_tip hook function may raise this to cleanly and
2855
explicitly abort a change to a branch tip.
2858
_fmt = u"Tip change rejected: %(msg)s"
2860
def __init__(self, msg):