org.xml.sax.SAXException.SAXException
constructor
public SAXException(message as String, exception as Exception):
Description

Creates a SAX exception with a message and embedded exception.

Parameters
ParameterDescription
messageError or warning message.
exceptionEmbedded exception.
Example
cause = Exception("I/O failed")
error = SAXException("Cannot parse entity", cause)