public class DOMErrorImpl
extends java.lang.Object
implements org.w3c.dom.DOMError
DOMErrorImpl
is an implementation that describes an error.
Note: The error object that describes the error
might be reused by Xerces implementation, across multiple calls to the
handleEvent method on DOMErrorHandler interface.
See also the Document Object Model (DOM) Level 3 Core Specification.
Modifier and Type | Field and Description |
---|---|
java.lang.Exception |
fException |
DOMLocatorImpl |
fLocator |
java.lang.String |
fMessage |
java.lang.Object |
fRelatedData |
short |
fSeverity |
java.lang.String |
fType |
Constructor and Description |
---|
DOMErrorImpl()
Default constructor.
|
DOMErrorImpl(short severity,
org.apache.xerces.xni.parser.XMLParseException exception)
Exctracts information from XMLParserException)
|
Modifier and Type | Method and Description |
---|---|
org.w3c.dom.DOMLocator |
getLocation()
The location of the error.
|
java.lang.String |
getMessage()
An implementation specific string describing the error that occured.
|
java.lang.Object |
getRelatedData()
The related
DOMError.type dependent data if any. |
java.lang.Object |
getRelatedException()
The related platform dependent exception if any.exception is a reserved
word, we need to rename it.Change to "relatedException".
|
short |
getSeverity()
The severity of the error, either
SEVERITY_WARNING ,
SEVERITY_ERROR , or SEVERITY_FATAL_ERROR . |
java.lang.String |
getType()
A
DOMString indicating which related data is expected in
relatedData . |
void |
reset() |
public short fSeverity
public java.lang.String fMessage
public DOMLocatorImpl fLocator
public java.lang.Exception fException
public java.lang.String fType
public java.lang.Object fRelatedData
public DOMErrorImpl()
public DOMErrorImpl(short severity, org.apache.xerces.xni.parser.XMLParseException exception)
public short getSeverity()
SEVERITY_WARNING
,
SEVERITY_ERROR
, or SEVERITY_FATAL_ERROR
.getSeverity
in interface org.w3c.dom.DOMError
public java.lang.String getMessage()
getMessage
in interface org.w3c.dom.DOMError
public org.w3c.dom.DOMLocator getLocation()
getLocation
in interface org.w3c.dom.DOMError
public java.lang.Object getRelatedException()
getRelatedException
in interface org.w3c.dom.DOMError
public void reset()
public java.lang.String getType()
org.w3c.dom.DOMError
DOMString
indicating which related data is expected in
relatedData
. Users should refer to the specification of
the error in order to find its DOMString
type and
relatedData
definitions if any.
Note: As an example,
Document.normalizeDocument()
does generate warnings when
the "split-cdata-sections" parameter is in use. Therefore, the method
generates a SEVERITY_WARNING
with type
"cdata-sections-splitted"
and the first
CDATASection
node in document order resulting from the
split is returned by the relatedData
attribute.
getType
in interface org.w3c.dom.DOMError
public java.lang.Object getRelatedData()
org.w3c.dom.DOMError
DOMError.type
dependent data if any.getRelatedData
in interface org.w3c.dom.DOMError
Copyright © 1999-2022 The Apache Software Foundation. All Rights Reserved.