Uses of Class
com.samskivert.mustache.MustacheException
-
-
Uses of MustacheException in com.samskivert.mustache
Subclasses of MustacheException in com.samskivert.mustache Modifier and Type Class Description static class
MustacheException.Context
An exception thrown if we encounter a context error (e.g.class
MustacheParseException
An exception thrown if we encounter an error while parsing a template.Methods in com.samskivert.mustache that throw MustacheException Modifier and Type Method Description java.lang.String
Template. execute(java.lang.Object context)
Executes this template with the given context, returning the results as a string.void
Template. execute(java.lang.Object context, java.io.Writer out)
Executes this template with the given context, writing the results to the supplied writer.void
Template. execute(java.lang.Object context, java.lang.Object parentContext, java.io.Writer out)
Executes this template with the supplied context and parent context, writing the results to the supplied writer.protected void
Template. executeSegs(Template.Context ctx, java.io.Writer out)
Template
Mustache.Compiler. loadTemplate(java.lang.String name)
Loads and compiles the templatename
using this compiler's configured template loader.
-