Package org.apache.jena.atlas.json
Class JsonParseException
- java.lang.Object
-
- java.lang.Throwable
-
- java.lang.Exception
-
- java.lang.RuntimeException
-
- org.apache.jena.atlas.json.JsonException
-
- org.apache.jena.atlas.json.JsonParseException
-
- All Implemented Interfaces:
java.io.Serializable
public class JsonParseException extends JsonException
- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description JsonParseException(int line, int column)JsonParseException(java.lang.String msg, int line, int column)JsonParseException(java.lang.String msg, java.lang.Throwable cause, int line, int column)JsonParseException(java.lang.Throwable cause, int line, int column)
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static java.lang.StringformatMessage(java.lang.String msg, int line, int column)intgetColumn()Column number where the parse exception occurred.intgetLine()Line number where the parse exception occurred.
-
-
-
Constructor Detail
-
JsonParseException
public JsonParseException(int line, int column)
-
JsonParseException
public JsonParseException(java.lang.Throwable cause, int line, int column)
-
JsonParseException
public JsonParseException(java.lang.String msg, int line, int column)
-
JsonParseException
public JsonParseException(java.lang.String msg, java.lang.Throwable cause, int line, int column)
-
-