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
public class TemplateInputException extends TemplateProcessingException
- Since:
- 1.0
- Author:
- Daniel Fernández
- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description TemplateInputException(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, setTemplateName
-
Methods inherited from class java.lang.Throwable
fillInStackTrace, getCause, getLocalizedMessage, getStackTrace, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
-
-
-
-
Constructor Detail
-
TemplateInputException
public TemplateInputException(String message)
-
TemplateInputException
public TemplateInputException(String message, String templateName, Throwable cause)
-
TemplateInputException
public TemplateInputException(String message, String templateName, int line, int col)
- 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
-
-