Class

XMLReaderException


Description

May occur when something goes wrong during the parsing of an XML file with XMLReader. Check the ErrorCode and Message properties of the RuntimeException class as well as the properties of this class for information about the error.

Methods

Name

Parameters

Returns

Shared

Constructor

message As String = "", errorCode As Integer = 0

Stack

String()

StackFrames

StackFrame()

Property descriptions


XMLReaderException.CurrentByteCount

CurrentByteCount As Integer

The number of bytes in the current event.


XMLReaderException.CurrentByteIndex

CurrentByteIndex As Integer

The byte position where the error occurred.


XMLReaderException.CurrentColumnNumber

CurrentColumnNumber As Integer

The column number where the error occurred.


XMLReaderException.CurrentLineNumber

CurrentLineNumber As Integer

The line number at which the error occurred.


XMLReaderException.ErrorNumber

ErrorNumber As Integer

Used to contain an error number that describes the runtime error.


XMLReaderException.Message

Message As String

Used to contain descriptive text to display when the runtime exception is encountered.

Method descriptions


XMLReaderException.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.


XMLReaderException.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.


XMLReaderException.StackFrames

StackFrames As StackFrame()

Returns an array containing the stack when the exception was first raised.

Compatibility

All project types on all supported operating systems.

See also

RuntimeException parent class; RuntimeException, XMLReader classes.