org.openjena.atlas.json
Class JsonParseException

java.lang.Object
  extended by java.lang.Throwable
      extended by java.lang.Exception
          extended by java.lang.RuntimeException
              extended by org.openjena.atlas.json.JsonException
                  extended by org.openjena.atlas.json.JsonParseException
All Implemented Interfaces:
Serializable

public class JsonParseException
extends JsonException

See Also:
Serialized Form

Constructor Summary
JsonParseException(int line, int column)
           
JsonParseException(String msg, int line, int column)
           
JsonParseException(String msg, Throwable cause, int line, int column)
           
JsonParseException(Throwable cause, int line, int column)
           
 
Method Summary
 int getColumn()
          Column number where the parse exception occurred.
 int getLine()
          Line number where the parse exception occurred.
 
Methods inherited from class java.lang.Throwable
fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
 
Methods inherited from class java.lang.Object
equals, getClass, hashCode, notify, notifyAll, wait, wait, wait
 

Constructor Detail

JsonParseException

public JsonParseException(int line,
                          int column)

JsonParseException

public JsonParseException(Throwable cause,
                          int line,
                          int column)

JsonParseException

public JsonParseException(String msg,
                          int line,
                          int column)

JsonParseException

public JsonParseException(String msg,
                          Throwable cause,
                          int line,
                          int column)
Method Detail

getColumn

public int getColumn()
Column number where the parse exception occurred.


getLine

public int getLine()
Line number where the parse exception occurred.



Licenced under the Apache License, Version 2.0