Package com.microstrategy.utils.xml
Class SAXParsingException
- java.lang.Object
-
- java.lang.Throwable
-
- java.lang.Exception
-
- com.microstrategy.utils.xml.SAXParsingException
-
- All Implemented Interfaces:
java.io.Serializable
public class SAXParsingException extends java.lang.Exception
This is a generic exception that is raised when performing SAX parsing. This exception is thrown by theSAXHelper
class methods.- Since:
- MicroStrategy Web 8.1.0
- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description SAXParsingException()
Creates a new SAXParsingException object.SAXParsingException(java.lang.String message)
Creates a new SAXParsingException object.SAXParsingException(java.lang.String message, java.lang.Throwable cause)
Creates a new SAXParsingException object.SAXParsingException(java.lang.Throwable cause)
Creates a new SAXParsingException object.
-
-
-
Constructor Detail
-
SAXParsingException
public SAXParsingException()
Creates a new SAXParsingException object.
-
SAXParsingException
public SAXParsingException(java.lang.String message)
Creates a new SAXParsingException object.- Parameters:
message
- The message for the exception.
-
SAXParsingException
public SAXParsingException(java.lang.Throwable cause)
Creates a new SAXParsingException object.- Parameters:
cause
- The rootThrowable
cause.
-
SAXParsingException
public SAXParsingException(java.lang.String message, java.lang.Throwable cause)
Creates a new SAXParsingException object.- Parameters:
message
- The textual error message.cause
- An underlyingThrowable
cause.
-
-