::class domException public


domExceptions and their codes.

DOM operations only raise exceptions in "exceptional" circumstances, i.e., when an operation is impossible to perform
(either for logical reasons, because data is lost, or because the implementation has become unstable). In general, DOM
methods return specific error values in ordinary processing situations, such as out-of-bound errors when using
NodeList.

Implementations should raise other exceptions under other circumstances. For example, implementations should raise an
implementation-dependent exception if a .nil argument is passed when null was not expected.

Some languages and object systems do not support the concept of exceptions. For such systems, error conditions may be
indicated using native error reporting mechanisms. For some bindings, for example, methods may return error codes
similar to those listed in the corresponding method descriptions.


Definition at line 98 of xmlDOM.cls

Public Class Methods

  domstring_size_err ()
  hierarchy_request_err ()
  index_size_err ()
  inuse_method_err ()
  invalid_access_err ()
  invalid_character_err ()
  invalid_modification_err ()
  invalid_state_err ()
  namespace_err ()
  no_data_allowed_err ()
  no_modification_allowed_err ()
  not_found_err ()
  not_supported_err ()
  syntax_err ()
  type_mismatch_err ()
  validation_err ()
  wrong_document_err ()

Feature Detail

domException::method index_size_err class

INDEX_SIZE_ERR - If index or size is negative, or greater than the allowed
value.


Definition at line 103 of xmlDOM.cls
Statically referenced by
xmlDOM.cls line 1246 "raise user domException description (.domException~index_size_err)"
xmlDOM.cls line 1261 "raise user domException description (.domException~index_size_err)"
xmlDOM.cls line 1394 "raise user domException additional (.domException~index_size_err) description ("Offset" offset "is larger than length" self~data~length "of text")"

domException::method domstring_size_err class

DOMSTRING_SIZE_ERR - If the specified range of text does not fit into a
DOMString.


Definition at line 109 of xmlDOM.cls

domException::method hierarchy_request_err class

HIERARCHY_REQUEST_ERR - If any Node is inserted somewhere it doesn't belong.


Definition at line 114 of xmlDOM.cls

domException::method wrong_document_err class

WRONG_DOCUMENT_ERR - If a Node is used in a different document than the one
that created it (that doesn't support it).


Definition at line 120 of xmlDOM.cls
Statically referenced by
xmlDOM.cls line 1037 "raise user domException description (.domException~wrong_document_err)"
xmlDOM.cls line 1946 "raise user domException additional (.domException~wrong_document_err) description ("Attribute" newAttr~name "is owned by another document")"
xmlDOM.cls line 2630 "raise user domException additional (.domException~WRONG_DOCUMENT_ERR) description ("DOCTYTPE belongs to different document.")"

domException::method invalid_character_err class

INVALID_CHARACTER_ERR - If an invalid or illegal character is specified, such
as in an XML name.


Definition at line 126 of xmlDOM.cls
Statically referenced by
xmlDOM.cls line 1869 "raise user domException description (.domException~invalid_character_err)"
xmlDOM.cls line 1902 "raise user domException description (.domException~invalid_character_err)"
xmlDOM.cls line 2222 "raise user domException description (.domException~invalid_character_err)"
xmlDOM.cls line 2256 "raise user domException description (.domException~invalid_character_err)"
xmlDOM.cls line 2318 "raise user domException description (.domException~invalid_character_err)"
xmlDOM.cls line 2347 "raise user domException description (.domException~invalid_character_err)"
xmlDOM.cls line 2388 "raise user domException description (.domException~invalid_character_err)"
xmlDOM.cls line 2616 "raise user domException description (.domException~INVALID_CHARACTER_ERR)"

domException::method no_data_allowed_err class

NO_DATA_ALLOWED_ERR - If data is specified for a Node which does not support
data


Definition at line 132 of xmlDOM.cls

domException::method no_modification_allowed_err class

NO_MODIFICATION_ALLOWED_ERR - If an attempt is made to modify an object where
modifications are not allowed.


Definition at line 138 of xmlDOM.cls

domException::method not_found_err class

NOT_FOUND_ERR - If an attempt is made to reference a Node in a context where
it does not exist.


Definition at line 144 of xmlDOM.cls
Statically referenced by
xmlDOM.cls line 978 "raise user domException description(.domException~not_found_err)"
xmlDOM.cls line 1985 "raise user domException description (.domException~not_found_err)"
xmlDOM.cls line 2004 "raise user domException description (.domException~not_found_err)"
xmlDOM.cls line 2021 "raise user domException description(.domException~not_found_err)"

domException::method not_supported_err class

NOT_SUPPORTED_ERR - If the implementation does not support the requested type of object or operation.


Definition at line 149 of xmlDOM.cls

domException::method inuse_method_err class

INUSE_method_ERR - If an attempt is made to add an method that is already in use elsewhere.


Definition at line 154 of xmlDOM.cls

domException::method invalid_state_err class

INVALID_STATE_ERR - If an attempt is made to use an object that is not, or is no longer, usable.


Definition at line 159 of xmlDOM.cls

domException::method syntax_err class

SYNTAX_ERR - If an invalid or illegal string is specified.


Definition at line 164 of xmlDOM.cls
Statically referenced by
xmlDOM.cls line 2632 "else raise user domException additional (.domException~SYNTAX_ERR) description ("Argument is NOT a .xmlDocType.")"

domException::method invalid_modification_err class

INVALID_MODIFICATION_ERR - If an attempt is made to modify the type of the underlying object.


Definition at line 169 of xmlDOM.cls
Statically referenced by
xmlDOM.cls line 1217 "else raise user domException description (.domException~invalid_modification_err)"
xmlDOM.cls line 1227 "else raise user domException description (.domException~invalid_modification_err)"

domException::method namespace_err class

NAMESPACE_ERR - If an attempt is made to create or change an object in a way which is incorrect with regard to
namespaces.


Definition at line 175 of xmlDOM.cls
Statically referenced by
xmlDOM.cls line 1905 "raise user domException description (.domException~namespace_err)"
xmlDOM.cls line 1908 "raise user domException description (.domException~namespace_err)"
xmlDOM.cls line 1911 "raise user domException description (.domException~namespace_err)"
xmlDOM.cls line 1914 "raise user domException description (.domException~namespace_err)"
xmlDOM.cls line 2266 "raise user domException description (.domException~namespace_err)"
xmlDOM.cls line 2357 "raise user domException description (.domException~namespace_err)"
xmlDOM.cls line 2620 "raise user domException additional (.domException~namespace_err) description ("Qualified name can contain only one ':' character.")"
xmlDOM.cls line 2623 "raise user domException additional (.domException~NAMESPACE_ERR) description ("Cannot have a prefix without namespaceURI.")"
xmlDOM.cls line 2625 "raise user domException additional (.domException~NAMESPACE_ERR) description ("Cannot have namespaceURI without prefix.")"
xmlDOM.cls line 2627 "raise user domException additional (.domException~NAMESPACE_ERR) description ("Invalid namespaceURI for prefix" prefix".")"

domException::method invalid_access_err class

INVALID_ACCESS_ERR - If a parameter or an operation is not supported by the underlying object.


Definition at line 180 of xmlDOM.cls

domException::method validation_err class

VALIDATION_ERR - If a call to a method such as insertBefore or removeChild would make the Node invalid with respect to
"partial validity", this exception would be raised and the operation would not be done. This code is used in [DOM
Level 3 Validation]. Refer to this specification for further information.


Definition at line 187 of xmlDOM.cls

domException::method type_mismatch_err class

TYPE_MISMATCH_ERR - If the type of an object is incompatible with the expected type of the parameter associated to the
object.


Definition at line 193 of xmlDOM.cls

Get RexxLiterate at SourceForge.net. Fast, secure and Free Open Source software downloads
Generated on 30 Jul 2015 13:56:48 for xmlDOM for OOrexx by rexxliterate  0.0.1