Class TextParseException
-
- All Implemented Interfaces:
Serializable
public final class TextParseException extends Exception
Exception that can be thrown during parsing of text templates using a Thymeleaf text-based parser.
- Since:
- 3.0.0
- Author:
- Daniel Fernández
- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description TextParseException()
TextParseException(int line, int col)
TextParseException(String message)
TextParseException(String message, int line, int col)
TextParseException(String message, Throwable throwable)
TextParseException(String message, Throwable throwable, int line, int col)
TextParseException(Throwable throwable)
TextParseException(Throwable throwable, int line, int col)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description Integer
getCol()
Integer
getLine()
-
Methods inherited from class java.lang.Throwable
fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
-
-
-
-
Constructor Detail
-
TextParseException
public TextParseException()
-
TextParseException
public TextParseException(String message)
-
TextParseException
public TextParseException(Throwable throwable)
-
TextParseException
public TextParseException(int line, int col)
-
TextParseException
public TextParseException(String message, Throwable throwable, int line, int col)
-
TextParseException
public TextParseException(String message, int line, int col)
-
TextParseException
public TextParseException(Throwable throwable, int line, int col)
-
-