Merge branch '2.0.x'

This commit is contained in:
Andy Wilkinson
2022-07-15 12:52:41 +01:00

View File

@@ -110,6 +110,9 @@ public class StandardTemplateResourceResolverTests {
return action.call();
}
catch (Exception ex) {
if (ex instanceof RuntimeException) {
throw (RuntimeException) ex;
}
throw new RuntimeException(ex);
}
finally {