Package org.thymeleaf.exceptions
Class TemplateInputException
Object
Throwable
Exception
RuntimeException
org.thymeleaf.exceptions.TemplateEngineException
org.thymeleaf.exceptions.TemplateProcessingException
org.thymeleaf.exceptions.TemplateInputException
- All Implemented Interfaces:
Serializable
- Since:
- 1.0
- Author:
- Daniel Fernández
- See Also:
-
Constructor Summary
ConstructorsConstructorDescriptionTemplateInputException(String message) TemplateInputException(String message, String templateName, int line, int col) TemplateInputException(String message, String templateName, int line, int col, Throwable cause) TemplateInputException(String message, String templateName, Throwable cause) TemplateInputException(String message, Throwable cause) -
Method Summary
Methods inherited from class org.thymeleaf.exceptions.TemplateProcessingException
getCol, getLine, getMessage, getTemplateName, hasLineAndCol, hasTemplateName, setLineAndCol, setTemplateNameMethods inherited from class java.lang.Throwable
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
-
Constructor Details
-
TemplateInputException
-
TemplateInputException
-
TemplateInputException
-
TemplateInputException
- Parameters:
message- The message of the exceptiontemplateName- The name of the template for which the exception is thrownline- line position of the event that caused the exceptioncol- columns position of the event that caused the exception- Since:
- 3.0.0
-
TemplateInputException
public TemplateInputException(String message, String templateName, int line, int col, Throwable cause) - Parameters:
message- The message of the exceptiontemplateName- The name of the template for which the exception is thrownline- line position of the event that caused the exceptioncol- columns position of the event that caused the exceptioncause- cause to be nested inside the exception- Since:
- 3.0.0
-