Class 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 the SAXHelper 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.
    • Method Summary

      • Methods inherited from class java.lang.Throwable

        addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
      • Methods inherited from class java.lang.Object

        clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
    • 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 root Throwable 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 underlying Throwable cause.