Package freemarker.template
Class MalformedTemplateNameException
java.lang.Object
java.lang.Throwable
java.lang.Exception
java.io.IOException
freemarker.template.MalformedTemplateNameException
- All Implemented Interfaces:
Serializable
Indicates that the template name given was malformed according the
TemplateNameFormat in use. Note that for
backward compatibility, TemplateNameFormat.DEFAULT_2_3_0 doesn't throw this exception,
TemplateNameFormat.DEFAULT_2_4_0 does. This exception extends IOException for backward
compatibility.- Since:
- 2.3.22
- See Also:
TemplateNotFoundException,Configuration.getTemplate(String), Serialized Form
-
Constructor Summary
ConstructorsConstructorDescriptionMalformedTemplateNameException(String templateName, String malformednessDescription) -
Method Summary
Modifier and TypeMethodDescriptionThe description of why the template name is said to be malformed.The name that was deemed to be malformed.Methods inherited from class java.lang.Throwable
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
-
Constructor Details
-
MalformedTemplateNameException
-
-
Method Details
-
getTemplateName
The name that was deemed to be malformed. -
getMalformednessDescription
The description of why the template name is said to be malformed.
-