Skip to content
Snippets Groups Projects
Commit cdbb8548 authored by Pierre-Yves David's avatar Pierre-Yves David
Browse files

hook: raise a more specialized HookAbort exception when a hook fails

We need to gracefully handle some aborts for pushkey, especially
because it leads to a user-facing crash over the wireprotocols. So we
need a more specialized exception to catch.
parent 759202b6
No related branches found
No related tags found
No related merge requests found
......@@ -48,6 +48,12 @@
Exception.__init__(self, *args)
self.hint = kw.get('hint')
class HookAbort(Abort):
"""raised when a validation hook fails, aborting an operation
Exists to allow more specialized catching."""
pass
class ConfigError(Abort):
"""Exception raised when parsing config files"""
......
......@@ -7,7 +7,7 @@
from i18n import _
import os, sys, time
import extensions, util, demandimport
import extensions, util, demandimport, error
def _pythonhook(ui, repo, name, hname, funcname, args, throw):
'''call python hook. hook is callable object, looked up as
......@@ -107,7 +107,7 @@
name, funcname, duration)
if r:
if throw:
raise util.Abort(_('%s hook failed') % hname)
raise error.HookAbort(_('%s hook failed') % hname)
ui.warn(_('warning: %s hook failed\n') % hname)
return r
......@@ -142,7 +142,7 @@
if r:
desc, r = util.explainexit(r)
if throw:
raise util.Abort(_('%s hook %s') % (name, desc))
raise error.HookAbort(_('%s hook %s') % (name, desc))
ui.warn(_('warning: %s hook %s\n') % (name, desc))
return r
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment