Package com.microstrategy.utils.xml
Class SAXSupportException
- java.lang.Object
-
- java.lang.Throwable
-
- java.lang.Exception
-
- org.xml.sax.SAXException
-
- com.microstrategy.utils.xml.SAXSupportException
-
- All Implemented Interfaces:
java.io.Serializable
public class SAXSupportException extends org.xml.sax.SAXException
Exception thrown by SAXSupport methods to report problems with XML format or content. Use this exception in your content handler methods to report such problems. This will allow calling methods to distinguish our exceptions from exception thrown by the SAX parser itself.- Since:
- MicroStrategy Web 7.3.1 or earlier
- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description SAXSupportException(java.lang.Exception ex)
Constructs an exception with specified messageSAXSupportException(java.lang.String msg)
Constructs an exception with specified messageSAXSupportException(java.lang.String msg, java.lang.Exception ex)
Constracts an exception with spesified message and exception
-
-
-
Constructor Detail
-
SAXSupportException
public SAXSupportException(java.lang.String msg)
Constructs an exception with specified message- Parameters:
msg
- error message
-
SAXSupportException
public SAXSupportException(java.lang.Exception ex)
Constructs an exception with specified message- Parameters:
ex
- wrapped exception
-
SAXSupportException
public SAXSupportException(java.lang.String msg, java.lang.Exception ex)
Constracts an exception with spesified message and exception- Parameters:
msg
- error messageex
- wrapped exception
-
-