# HG changeset patch
# User Yuya Nishihara <y...@tcha.org>
# Date 1519530630 -32400
#      Sun Feb 25 12:50:30 2018 +0900
# Node ID 02afa73e633146722c187090fd73885fceb552d9
# Parent  35263744d42f5a3c60faec304d044cbee337599d
templater: specialize ResourceUnavailable error so that it can be caught

See the next patch how it will be used.

diff --git a/mercurial/templater.py b/mercurial/templater.py
--- a/mercurial/templater.py
+++ b/mercurial/templater.py
@@ -30,6 +30,9 @@ from . import (
     util,
 )
 
+class ResourceUnavailable(error.Abort):
+    pass
+
 class TemplateNotFound(error.Abort):
     pass
 
@@ -1377,7 +1380,8 @@ class engine(object):
         if v is None:
             v = self._resources.get(key)
         if v is None:
-            raise error.Abort(_('template resource not available: %s') % key)
+            raise ResourceUnavailable(_('template resource not available: %s')
+                                      % key)
         return v
 
     def _load(self, t):
_______________________________________________
Mercurial-devel mailing list
Mercurial-devel@mercurial-scm.org
https://www.mercurial-scm.org/mailman/listinfo/mercurial-devel

Reply via email to