Package com.stardog.stark.query.io
Class InvalidQueryResults
- java.lang.Object
-
- java.lang.Throwable
-
- java.lang.Exception
-
- java.lang.RuntimeException
-
- com.stardog.stark.query.io.InvalidQueryResults
-
- All Implemented Interfaces:
java.io.Serializable
public class InvalidQueryResults extends java.lang.RuntimeExceptionException denoting parsing of serialized query results failed due to syntax errors
- Since:
- 1.0
- Version:
- 1.0
- Author:
- Michael Grove
- See Also:
- Serialized Form
-
-
Field Summary
Fields Modifier and Type Field Description static longUNKNOWN_POSITION
-
Constructor Summary
Constructors Constructor Description InvalidQueryResults(java.lang.String theMessage)InvalidQueryResults(java.lang.String theMessage, long theLineNumber, long theColumnNumber)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description longcolumnNumber()Return the column where the parse error occurredlonglineNumber()Return the line where the parse error occurred
-
-
-
Field Detail
-
UNKNOWN_POSITION
public static final long UNKNOWN_POSITION
- See Also:
- Constant Field Values
-
-
Method Detail
-
lineNumber
public long lineNumber()
Return the line where the parse error occurred- Returns:
- the line number or
UNKNOWN_POSITIONif not specified
-
columnNumber
public long columnNumber()
Return the column where the parse error occurred- Returns:
- the column number or
UNKNOWN_POSITIONif not specified
-
-