Package org.wickedsource.docxstamper.api
Class DocxStamperException
java.lang.Object
java.lang.Throwable
java.lang.Exception
java.lang.RuntimeException
org.wickedsource.docxstamper.api.DocxStamperException
- All Implemented Interfaces:
Serializable
- Direct Known Subclasses:
CommentProcessingException,UnresolvedExpressionException
This class represents an exception that can be thrown during the processing of a Docx file using the DocxStamper library.
It extends the RuntimeException class and provides additional constructors to handle different scenarios.
- Version:
- 1.6.6
- Author:
- Joseph Verron
- See Also:
-
Constructor Summary
ConstructorsConstructorDescriptionDocxStamperException(String message) Constructor for DocxStamperException.DocxStamperException(String message, Throwable cause) Constructor for DocxStamperException.DocxStamperException(Throwable cause) Constructor for DocxStamperException. -
Method Summary
Methods inherited from class java.lang.Throwable
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
-
Constructor Details
-
DocxStamperException
Constructor for DocxStamperException.
- Parameters:
message- a message describing the error
-
DocxStamperException
Constructor for DocxStamperException.
- Parameters:
message- a message describing the errorcause- the cause of the error
-
DocxStamperException
Constructor for DocxStamperException.
- Parameters:
cause- the cause of the error
-