Class DomException
Inheritance
Namespace: Telerik.Windows.Documents.FormatProviders.Html.Parsing.Dom
Assembly: Telerik.Windows.Controls.RichTextBox.dll
Syntax
public class DomException : Exception
Constructors
DomException()
Default constuctor. Used only for serialisation.
Declaration
public DomException()
DomException(Int16, String)
Constructor
Declaration
public DomException(short code, string message)
Parameters
System.Int16
code
The code. |
System.String
message
The message |
Fields
DomStringSize
If the specified range of text does not fit into a DOMString
Declaration
public const short DomStringSize = 2
Field Value
System.Int16
|
HierarchyRequest
If any node is inserted somewhere it doesn't belong
Declaration
public const short HierarchyRequest = 3
Field Value
System.Int16
|
IndexSize
If index or size is negative, or greater than the allowed value
Declaration
public const short IndexSize = 1
Field Value
System.Int16
|
InUseAttribute
If an attempt is made to add an attribute that is already in use elsewhere
Declaration
public const short InUseAttribute = 10
Field Value
System.Int16
|
InvalidAccess
If a parameter or an operation is not supported by the underlying object.
Declaration
public const short InvalidAccess = 15
Field Value
System.Int16
|
InvalidCharacter
If an invalid or illegal character is specified, such as in a name. See production 2 in the XML specification for the definition of a legal character, and production 5 for the definition of a legal name character.
Declaration
public const short InvalidCharacter = 5
Field Value
System.Int16
|
InvalidModification
If an attempt is made to modify the type of the underlying object.
Declaration
public const short InvalidModification = 13
Field Value
System.Int16
|
InvalidState
If an attempt is made to use an object that is not, or is no longer, usable.
Declaration
public const short InvalidState = 11
Field Value
System.Int16
|
Namespace
If an attempt is made to create or change an object in a way which is incorrect with regard to namespaces.
Declaration
public const short Namespace = 14
Field Value
System.Int16
|
NoDataAllowed
If data is specified for a node which does not support data
Declaration
public const short NoDataAllowed = 6
Field Value
System.Int16
|
NoModificationAllowed
If an attempt is made to modify an object where modifications are not allowed
Declaration
public const short NoModificationAllowed = 7
Field Value
System.Int16
|
NotFound
If an attempt is made to reference a node in a context where it does not exist
Declaration
public const short NotFound = 8
Field Value
System.Int16
|
NotSupported
If the implementation does not support the requested type of object or operation.
Declaration
public const short NotSupported = 9
Field Value
System.Int16
|
Syntax
If an invalid or illegal string is specified.
Declaration
public const short Syntax = 12
Field Value
System.Int16
|
WrongDocument
If a node is used in a different document than the one that created it (that doesn't support it)
Declaration
public const short WrongDocument = 4
Field Value
System.Int16
|
Properties
Code
The error code.
Declaration
public short Code { get; set; }
Property Value
System.Int16
|