102103104105106107108109110
public Theme getTheme(String name) throws ThemeNotFoundException, RollerException { Theme theme = (Theme) this.themes.get(name); if(theme == null) throw new ThemeNotFoundException("Couldn't find theme ["+name+"]"); return theme; }