Package com.stardog.stark.io
Class InvalidRDF
- java.lang.Object
-
- java.lang.Throwable
-
- java.lang.Exception
-
- java.lang.RuntimeException
-
- com.stardog.stark.io.InvalidRDF
-
- All Implemented Interfaces:
java.io.Serializable
public class InvalidRDF extends java.lang.RuntimeException
Exception thrown when
parsing
an RDF file and the contents are not syntactically valid RDF.- 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 InvalidRDF(java.lang.String theMessage)
InvalidRDF(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
-
-