102103104105106107108109110111
Tag tag = findAncestorWithClass(this, DynamicTag.class); if (tag == null) { throw new JellyException("Cannot invoke body, no dynamic tag is defined in this block"); } else { tag.invokeBody(output); } } } }
101102103104105106107108109110