Package org.apache.velocity.exception
Interface ExtendedParseException
-
- All Known Implementing Classes:
MacroParseException
,MethodInvocationException
,TemplateInitException
,TemplateParseException
public interface ExtendedParseException
All Exceptions that can provide additional information about the place where the error happened (template name, column and line number) can implement this interface and the ParseErrorException will then be able to deal with this information.- Since:
- 1.5
- Version:
- $Id: ExtendedParseException.java 685685 2008-08-13 21:43:27Z nbubna $
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description int
getColumnNumber()
returns the column number where this exception occured.int
getLineNumber()
returns the line number where this exception occured.java.lang.String
getTemplateName()
returns the Template name where this exception occured.
-
-
-
Method Detail
-
getTemplateName
java.lang.String getTemplateName()
returns the Template name where this exception occured.- Returns:
- The Template name where this exception occured.
-
getLineNumber
int getLineNumber()
returns the line number where this exception occured.- Returns:
- The line number where this exception occured.
-
getColumnNumber
int getColumnNumber()
returns the column number where this exception occured.- Returns:
- The column number where this exception occured.
-
-