Package io.github.dornol.excelkit.core
Class ExcelKitException
java.lang.Object
java.lang.Throwable
java.lang.Exception
java.lang.RuntimeException
io.github.dornol.excelkit.core.ExcelKitException
- All Implemented Interfaces:
Serializable
- Direct Known Subclasses:
CsvReadException,CsvWriteException,ExcelReadException,ExcelWriteException,TempResourceCreateException
Base exception for all excel-kit library errors.
This allows callers to catch all library-specific exceptions with a single catch block.
- Since:
- 2025-07-19
- See Also:
-
Constructor Summary
ConstructorsConstructorDescriptionExcelKitException(String message) Creates an exception with the given message.ExcelKitException(String message, Throwable cause) Creates an exception with the given message and cause.ExcelKitException(Throwable cause) Creates an exception with the given 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
-
ExcelKitException
Creates an exception with the given message.- Parameters:
message- the detail message
-
ExcelKitException
Creates an exception with the given message and cause.- Parameters:
message- the detail messagecause- the underlying cause
-
ExcelKitException
Creates an exception with the given cause.- Parameters:
cause- the underlying cause
-