Class POIXMLException

  • All Implemented Interfaces:
    java.io.Serializable

    public final class POIXMLException
    extends java.lang.RuntimeException
    Indicates a generic OOXML error.
    See Also:
    Serialized Form
    • Constructor Summary

      Constructors 
      Constructor Description
      POIXMLException()
      Create a new POIXMLException with no detail mesage.
      POIXMLException​(java.lang.String msg)
      Create a new POIXMLException with the String specified as an error message.
      POIXMLException​(java.lang.String msg, java.lang.Throwable cause)
      Create a new POIXMLException with the String specified as an error message and the cause.
      POIXMLException​(java.lang.Throwable cause)
      Create a new POIXMLException with the specified cause.
    • 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

        equals, getClass, hashCode, notify, notifyAll, wait, wait, wait
    • Constructor Detail

      • POIXMLException

        public POIXMLException()
        Create a new POIXMLException with no detail mesage.
      • POIXMLException

        public POIXMLException​(java.lang.String msg)
        Create a new POIXMLException with the String specified as an error message.
        Parameters:
        msg - The error message for the exception.
      • POIXMLException

        public POIXMLException​(java.lang.String msg,
                               java.lang.Throwable cause)
        Create a new POIXMLException with the String specified as an error message and the cause.
        Parameters:
        msg - The error message for the exception.
        cause - the cause (which is saved for later retrieval by the Throwable.getCause() method). (A null value is permitted, and indicates that the cause is nonexistent or unknown.)
      • POIXMLException

        public POIXMLException​(java.lang.Throwable cause)
        Create a new POIXMLException with the specified cause.
        Parameters:
        cause - the cause (which is saved for later retrieval by the Throwable.getCause() method). (A null value is permitted, and indicates that the cause is nonexistent or unknown.)