Ignore:
Timestamp:
2009-07-02 15:06:52 (3 years ago)
Author:
bruno
Message:

Introduce a TemplateException? class, and use that in the template code instead of a generic RuntimeException?.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/universe/kauri-template/src/main/java/org/kauriproject/template/InheritanceBlock.java

    r894 r1346  
    9494                    return chain.get(chain.size() - 1).getEndStep().getCompiledNext(); 
    9595                } else { 
    96                     throw new RuntimeException("Parent block not found for " + getName() + ", location " 
     96                    throw new TemplateException("Parent block not found for " + getName() + ", location " 
    9797                            + getLocation()); 
    9898                } 
Note: See TracChangeset for help on using the changeset viewer.