Package org.apache.poi.ooxml
Class POIXMLException
- java.lang.Object
-
- java.lang.Throwable
-
- java.lang.Exception
-
- java.lang.RuntimeException
-
- org.apache.poi.ooxml.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 newPOIXMLException
with no detail mesage.POIXMLException(java.lang.String msg)
Create a newPOIXMLException
with theString
specified as an error message.POIXMLException(java.lang.String msg, java.lang.Throwable cause)
Create a newPOIXMLException
with theString
specified as an error message and the cause.POIXMLException(java.lang.Throwable cause)
Create a newPOIXMLException
with the specified cause.
-
-
-
Constructor Detail
-
POIXMLException
public POIXMLException()
Create a newPOIXMLException
with no detail mesage.
-
POIXMLException
public POIXMLException(java.lang.String msg)
Create a newPOIXMLException
with theString
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 newPOIXMLException
with theString
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 theThrowable.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 newPOIXMLException
with the specified cause.- Parameters:
cause
- the cause (which is saved for later retrieval by theThrowable.getCause()
method). (A null value is permitted, and indicates that the cause is nonexistent or unknown.)
-
-