Package org.thymeleaf.templateparser.raw
Class RawParseException
-
- All Implemented Interfaces:
Serializable
public final class RawParseException extends Exception
Exception that can be thrown during parsing of raw templates using a Thymeleaf raw-based parser.
- Since:
- 3.0.0
- Author:
- Daniel Fernández
- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description RawParseException()
RawParseException(int line, int col)
RawParseException(String message)
RawParseException(String message, int line, int col)
RawParseException(String message, Throwable throwable)
RawParseException(String message, Throwable throwable, int line, int col)
RawParseException(Throwable throwable)
RawParseException(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
-
RawParseException
public RawParseException()
-
RawParseException
public RawParseException(String message)
-
RawParseException
public RawParseException(Throwable throwable)
-
RawParseException
public RawParseException(int line, int col)
-
RawParseException
public RawParseException(String message, int line, int col)
-
RawParseException
public RawParseException(Throwable throwable, int line, int col)
-
-