Package org.xwiki.officeimporter
Class OfficeImporterException
- java.lang.Object
-
- java.lang.Throwable
-
- java.lang.Exception
-
- org.xwiki.officeimporter.OfficeImporterException
-
- All Implemented Interfaces:
Serializable
public class OfficeImporterException extends Exception
The class used to indicate exceptions specific to the Office Importer plugin.- Since:
- 1.8M1
- Version:
- $Id: 3c8eac74d339d2af44ae7d41815523c425ef0414 $
- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description OfficeImporterException(String message)
Constructs a new exception with the specified message.OfficeImporterException(String message, Throwable throwable)
Constructs a new exception with the specified message and cause.OfficeImporterException(Throwable throwable)
Constructs a new exception 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
-
-
-
-
Constructor Detail
-
OfficeImporterException
public OfficeImporterException(String message)
Constructs a new exception with the specified message.- Parameters:
message
- The explanation of the exception.
-
OfficeImporterException
public OfficeImporterException(Throwable throwable)
Constructs a new exception with the specified cause.- Parameters:
throwable
- The underlying cause for this exception.
-
-