Package groovy.text
Class TemplateParseException
java.lang.Object
java.lang.Throwable
java.lang.Exception
java.lang.RuntimeException
groovy.text.TemplateParseException
- All Implemented Interfaces:
- java.io.Serializable
public class TemplateParseException
extends java.lang.RuntimeException
A custom exception class to flag template parsing errors
- See Also:
- Serialized Form
- 
Constructor SummaryConstructors Constructor Description TemplateParseException(int lineNumber, int column)TemplateParseException(java.lang.String message, int lineNumber, int column)TemplateParseException(java.lang.String message, java.lang.Throwable cause, int lineNumber, int column)TemplateParseException(java.lang.Throwable t, int lineNumber, int column)
- 
Method SummaryModifier and Type Method Description intgetColumn()intgetLineNumber()Methods inherited from class java.lang.ThrowableaddSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toStringMethods inherited from class java.lang.Objectclone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
- 
Constructor Details- 
TemplateParseExceptionpublic TemplateParseException(int lineNumber, int column)
- 
TemplateParseExceptionpublic TemplateParseException(java.lang.String message, int lineNumber, int column)
- 
TemplateParseExceptionpublic TemplateParseException(java.lang.String message, java.lang.Throwable cause, int lineNumber, int column)
- 
TemplateParseExceptionpublic TemplateParseException(java.lang.Throwable t, int lineNumber, int column)
 
- 
- 
Method Details- 
getLineNumberpublic int getLineNumber()
- 
getColumnpublic int getColumn()
 
-