110111112113114115116117118119120
} } } catch(TemplateException e) { // evaluation of literals must not throw a TemplateException throw new UndeclaredThrowableException(e); } } else { this.parseExp = parseExp; }
129130131132133134135136
{ throw e; } catch(Exception e) { throw new UndeclaredThrowableException(e); } }
1819202122232425
static Map createMap() { try { return (Map)hashMapClass.newInstance(); } catch(Exception e) { throw new UndeclaredThrowableException(e); } }
6162636465666768
} catch(InvocationTargetException e) { if(e.getTargetException() instanceof TemplateModelException) { throw (TemplateModelException)e.getTargetException(); } throw new UndeclaredThrowableException(e); } }
16481649165016511652165316541655165616571658
if(ENUMS_MODEL_CTOR != null) { try { return (ClassBasedModelFactory)ENUMS_MODEL_CTOR.newInstance( new Object[] { wrapper }); } catch(Exception e) { throw new UndeclaredThrowableException(e); } } else { return null; } }
332333334335336337338339340341342
} catch(Error e) { throw e; } catch(Throwable e) { throw new UndeclaredThrowableException(e); } } finally { out = prevOut; tw.close();
96979899100101102103
new DebuggerServer((Serializable)RemoteObject.toStub(new RmiDebuggerImpl(this))).start(); } catch(RemoteException e) { e.printStackTrace(); throw new UndeclaredThrowableException(e); } }
186187188189190191192193194195196
try { environment.setGlobalVariable(name, wrapper.wrap(value)); break; } catch(TemplateModelException e) { throw new UndeclaredThrowableException(e); } } case REQUEST_SCOPE: { getRequest().setAttribute(name, value); break;
236237238239240241242243244245246
return ((TemplateBooleanModel) m).getAsBoolean() ? Boolean.TRUE : Boolean.FALSE; } return m; } catch (TemplateModelException e) { throw new UndeclaredThrowableException(e); } } case REQUEST_SCOPE: { return getRequest().getAttribute(name); }
319320321322323324325326327328329
try { return new TemplateHashModelExEnumeration(environment.getGlobalNamespace()); } catch(TemplateModelException e) { throw new UndeclaredThrowableException(e); } } case REQUEST_SCOPE: { return getRequest().getAttributeNames(); }