Package com.github.jknack.handlebars
Class HandlebarsError
java.lang.Object
com.github.jknack.handlebars.HandlebarsError
- All Implemented Interfaces:
Serializable
Deprecated.
com.github.jknack.handlebars package is deprecated and marked for removal in subsequent releases which will involve removal of the handlebars dependency in AEM.
Useful information about a handlebar error.
- Since:
- 0.5.0
- See Also:
-
Field Summary
FieldsModifier and TypeFieldDescriptionfinal intDeprecated.The error's column number.final StringDeprecated.The error's evidence.final StringDeprecated.The file's name.final intDeprecated.The error's line number.final StringDeprecated.The full error's message.final StringDeprecated.The error's problem. -
Constructor Summary
ConstructorsConstructorDescriptionHandlebarsError(String filename, int line, int column, String reason, String evidence, String message) Deprecated.Creates a newHandlebarsError. -
Method Summary
-
Field Details
-
line
public final int lineDeprecated.The error's line number. -
column
public final int columnDeprecated.The error's column number. -
reason
Deprecated.The error's problem. -
evidence
Deprecated.The error's evidence. -
filename
Deprecated.The file's name. -
message
Deprecated.The full error's message.
-
-
Constructor Details
-
HandlebarsError
public HandlebarsError(String filename, int line, int column, String reason, String evidence, String message) Deprecated.Creates a newHandlebarsError.- Parameters:
filename- The file's name. Required.line- The error's line number.column- The error's column number.reason- The error's reason. Required.evidence- The error's evidence. Required.message- The error's message. Required.
-
-
Method Details