##// END OF EJS Templates
templater: specialize ResourceUnavailable error so that it can be caught...
Yuya Nishihara -
r36462:717a279c default
parent child Browse files
Show More
@@ -30,6 +30,9 b' from . import ('
30 30 util,
31 31 )
32 32
33 class ResourceUnavailable(error.Abort):
34 pass
35
33 36 class TemplateNotFound(error.Abort):
34 37 pass
35 38
@@ -1377,7 +1380,8 b' class engine(object):'
1377 1380 if v is None:
1378 1381 v = self._resources.get(key)
1379 1382 if v is None:
1380 raise error.Abort(_('template resource not available: %s') % key)
1383 raise ResourceUnavailable(_('template resource not available: %s')
1384 % key)
1381 1385 return v
1382 1386
1383 1387 def _load(self, t):
General Comments 0
You need to be logged in to leave comments. Login now