public SAXException(message as String, exception as Exception):
Creates a SAX exception with a message and embedded exception.
| Parameter | Description |
|---|---|
message | Error or warning message. |
exception | Embedded exception. |
cause = Exception("I/O failed")
error = SAXException("Cannot parse entity", cause)