Class

XMLDOMException


Description

This exception may occur during the creation of a DOM document and something goes wrong. For example, it will occur if multiple elements are appended to the top level of a document.

Properties

Name

Type

Read-Only

Shared

ErrorNumber

Integer

Message

String

Methods

Name

Parameters

Returns

Shared

Constructor

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

Stack

String

StackFrames

StackFrame

Constants

Compare the ErrorNumber to these class constants rather than the values to make your code more readable.

Value

Constant

0

OK

1

INDEX_SIZE_ERR

2

DOMSTRING_SIZE_ERR

3

HIERARCHY_REQUEST_ERR

4

WRONG_DOCUMENT_ERR

5

INVALID_CHARACTER_ERR

6

NO_DATA_ALLOWED_ERR

7

NO_MODIFICATION_ALLOWED_ERR

8

NOT_FOUND_ERR

9

NOT_SUPPORTED_ERR

10

INUSE_ATTRIBUTE_ERR

11

INVALID_STATE_ERR

12

SYNTAX_ERR

13

INVALID_MODIFICATION_ERR

14

NAMESPACE_ERR

15

INVALID_ACCESS_ERR

16

INVALID_NODE_TYPE

17

QUERY_PARSE_ERR

18

QUERY_EXECUTION_ERR

19

NOT_OK

Property descriptions


XMLDOMException.ErrorNumber

ErrorNumber As Integer

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

The following example displays a message box if, for example, you try to create more than one KeychainItem for the same application.

Var newItem As KeychainItem
If System.KeychainCount > 0 Then
  newItem = New KeychainItem
  // Indicate the name of the application
  newItem.ServiceName = "MyApplication"

  // Create a new keychain item for the application and assign the password
  System.Keychain.AddPassword(newItem, "SecretPassword")
Else
  System.Beep
  MessageBox("You don't have a key chain.")
End If
Exception err As KeychainException
  MessageBox(err.Message + ". Error Code: " + err.ErrorNumber.ToString)

XMLDOMException.Message

Message As String

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

The following example displays a message box if, for example, you try to create more than one KeychainItem for the same application.

Var newItem As KeyChainItem
If System.KeyChainCount > 0 Then
  newItem = New KeyChainItem
  // Indicate the name of the application
  newItem.ServiceName = "MyApplication"

  // Create a new keychain item for the application and assign the password
  System.KeyChain.AddPassword(newItem, "SecretPassword")
Else
  System.Beep
  MessageBox("You don't have a key chain.")
End If
Exception err As KeyChainException
  MessageBox(err.Message + ". Error Code: " + err.ErrorNumber.ToString)

Method descriptions


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


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


XMLDOMException.StackFrames

StackFrames As StackFrame

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

Notes

XMLDOMException errors have no properties. Use the Message and ErrorNumber properties of the RuntimeException class.

Compatibility

All project types on all supported operating systems.