Changeset 1346 for trunk/universe/kauri-template/src/main/java/org/kauriproject/template/IfBlock.java
- Timestamp:
- 2009-07-02 15:06:52 (3 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/universe/kauri-template/src/main/java/org/kauriproject/template/IfBlock.java
r921 r1346 70 70 String expression = attributes.getValue(TEST); 71 71 if (expression == null) 72 throw new RuntimeException("if instruction is missing required test attribute. Location: " + getLocation());72 throw new TemplateException("if instruction is missing required test attribute. Location: " + getLocation()); 73 73 74 74 elExpression = elFacade.createExpression(expression, Boolean.class);
Note: See TracChangeset
for help on using the changeset viewer.