org.codehaus.groovy.syntax
Class SyntaxException
java.lang.Object
java.lang.Throwable
java.lang.Exception
org.codehaus.groovy.GroovyException
org.codehaus.groovy.syntax.SyntaxException
- All Implemented Interfaces:
- GroovyExceptionInterface, Serializable
- Direct Known Subclasses:
- TokenException
- public class SyntaxException
- extends GroovyException
Base exception indicating a syntax error.
- Version:
- $Id: SyntaxException.java 2129 2005-04-14 08:46:30Z blackdrag $
- Author:
- bob mcwhirter
- See Also:
- Serialized Form
SyntaxException
public SyntaxException(String message,
int line,
int column)
SyntaxException
public SyntaxException(String message,
Throwable cause,
int line,
int column)
setSourceLocator
public void setSourceLocator(String sourceLocator)
getSourceLocator
public String getSourceLocator()
getLine
public int getLine()
- Retrieve the line upon which the error occurred.
- Returns:
- The line.
getStartColumn
public int getStartColumn()
- Retrieve the column upon which the error occurred.
- Returns:
- The column.
getStartLine
public int getStartLine()
- Returns:
- the end of the line on which the error occurs
getEndColumn
public int getEndColumn()
- Returns:
- the end column on which the error occurs
getMessage
public String getMessage()
Copyright © 2003-2007 The Codehaus. All Rights Reserved.