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
  • message Error or warning message.
  • exception Embedded exception.
Example
cause = Exception("I/O failed")
error = SAXException("Cannot parse entity", cause)