Package io.github.dornol.excelkit.excel
Class ExcelWriteException
java.lang.Object
java.lang.Throwable
java.lang.Exception
java.lang.RuntimeException
io.github.dornol.excelkit.core.ExcelKitException
io.github.dornol.excelkit.excel.ExcelWriteException
- All Implemented Interfaces:
Serializable
Exception thrown during Excel write operations.
- Since:
- 2025-07-19
- See Also:
-
Constructor Summary
ConstructorsConstructorDescriptionExcelWriteException(String message) Creates an exception with the given message.ExcelWriteException(String message, Throwable cause) Creates an exception with the given message and cause. -
Method Summary
Methods inherited from class java.lang.Throwable
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
-
Constructor Details
-
ExcelWriteException
Creates an exception with the given message.- Parameters:
message- the detail message
-
ExcelWriteException
Creates an exception with the given message and cause.- Parameters:
message- the detail messagecause- the underlying cause
-