Serialized Form


Package nanoxml

Class nanoxml.XMLParseException extends RuntimeException implements Serializable

Serialized Fields

lineNr

int lineNr
The line number in the source code where the error occurred, or NO_LINE if the line number is unknown.
Invariants:
  • lineNr > 0 || lineNr == NO_LINE


Package net.n3.nanoxml

Class net.n3.nanoxml.XMLElement extends Object implements Serializable

serialVersionUID: -2383376380548624920L

Serialized Fields

parent

IXMLElement parent
The parent element.


attributes

Vector attributes
The attributes of the element.


children

Vector children
The child elements.


name

String name
The name of the element.


fullName

String fullName
The full name of the element.


namespace

String namespace
The namespace URI.


content

String content
The content of the element.


systemID

String systemID
The system ID of the source data where this element is located.


lineNr

int lineNr
The line in the source data where this element starts.

Class net.n3.nanoxml.XMLException extends Exception implements Serializable

Serialized Fields

msg

String msg
The message of the exception.


systemID

String systemID
The system ID of the XML data where the exception occurred.


lineNr

int lineNr
The line number in the XML data where the exception occurred.


encapsulatedException

Exception encapsulatedException
Encapsulated exception.

Class net.n3.nanoxml.XMLParseException extends XMLException implements Serializable

Class net.n3.nanoxml.XMLValidationException extends XMLException implements Serializable

Serialized Fields

errorType

int errorType
Which error occurred.


elementName

String elementName
The name of the element where the exception occurred.


attributeName

String attributeName
The name of the attribute where the exception occurred.


attributeValue

String attributeValue
The value of the attribute where the exception occurred.