Class
JSONException
Description
An error occurred when working with a JSONItem.
Methods
Name |
Parameters |
Returns |
Shared |
---|---|---|---|
Property descriptions
JSONException.ErrorNumber
ErrorNumber As Integer
Used to contain an error number that describes the runtime error.
JSONException.Message
Message As String
Used to contain descriptive text to display when the runtime exception is encountered.
JSONException.Offset
Offset As Integer
The location of the parsing error.
Method descriptions
JSONException.Constructor
Constructor(message As String = "", errorCode As Integer = 0)
Note
Constructors are special methods called when you create an object with the New keyword and pass in the parameters above.
Used to raise your own RuntimeException with a message and optional error code.
JSONException.Stack
Stack As String()
Returns a String array that contains a list of all of the methods in the stack from the main entrypoint to the point at which the exception was invoked.
The stack contains all the method names up and including the current method name.
This feature only works if the IncludeFunctionNames property on the App object is selected in the Shared Build Settings.
In addition to your own method calls, you will also see framework method calls, but these may not always be completely accurate due to insufficient symbols for the OS to resolve.
JSONException.StackFrames
StackFrames As StackFrame()
Returns an array containing the stack when the exception was first raised.
Sample code
The following Exception block catches any JSONItem errors in the method.
Var person As New JSONItem
' This object is manipulated like a dictionary
person.Value("Name") = "John Doe"
person.Value("Age") = 32
person.Value("Married") = True
person.Value("Spouse") = "Jane Doe"
Var kids As New JSONItem
' This object is manipulated like an array
kids.Add("John Jr")
kids.Add("Jamie")
kids.Add("Jack")
kids.Add("Josie")
kids.AddAt(0, "Jen")
kids.RemoveAt(2)
person.Value("Kids") = kids
person.Compact = True
Var s As String = person.ToString
TextArea1.Text = s
ListBox1.RemoveAllRows
ShowJSONObject(person)
Exception err As JSONException
MessageBox("A JSONException has occurred.")
Compatibility
All project types on all supported operating systems.
See also
RuntimeException parent class; JSONItem, RuntimeException class.