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.RuntimeException
Exception 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 long
UNKNOWN_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 long
columnNumber()
Return the column where the parse error occurredlong
lineNumber()
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_POSITION
if not specified
-
columnNumber
public long columnNumber()
Return the column where the parse error occurred- Returns:
- the column number or
UNKNOWN_POSITION
if not specified
-
-