Package com.github.jknack.handlebars
Class HandlebarsError
java.lang.Object
com.github.jknack.handlebars.HandlebarsError
- All Implemented Interfaces:
Serializable
Useful information about a handlebar error.
- Since:
- 0.5.0
- See Also:
-
Field Summary
Fields -
Constructor Summary
ConstructorsConstructorDescriptionHandlebarsError(String filename, int line, int column, String reason, String evidence, String message) Creates a newHandlebarsError. -
Method Summary
-
Field Details
-
line
public final int lineThe error's line number. -
column
public final int columnThe error's column number. -
reason
The error's problem. -
evidence
The error's evidence. -
filename
The file's name. -
message
The full error's message.
-
-
Constructor Details
-
HandlebarsError
public HandlebarsError(String filename, int line, int column, String reason, String evidence, String message) 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