org.xml.sax.SAXParseException.SAXParseException
constructor
public SAXParseException(message as String, publicId as String, systemId as String, lineNumber as Int, columnNumber as Int, exception as Exception):
Description

Creates a parse exception from explicit location values and cause.

Parameters
ParameterDescription
messageError or warning message.
publicIdPublic identifier, or null.
systemIdSystem identifier, or null.
lineNumberOne-based line number, or -1.
columnNumberOne-based column number, or -1.
exceptionEmbedded exception.
Example
error = SAXParseException("Invalid XML", null, "file:/doc.xml", 3, 17, cause)