Package io.github.dornol.excelkit.csv
Class CsvWriteException
java.lang.Object
java.lang.Throwable
java.lang.Exception
java.lang.RuntimeException
io.github.dornol.excelkit.core.ExcelKitException
io.github.dornol.excelkit.csv.CsvWriteException
- All Implemented Interfaces:
Serializable
Exception thrown during CSV write operations.
- Since:
- 2025-07-19
- See Also:
-
Constructor Summary
ConstructorsConstructorDescriptionCsvWriteException(String message) Creates an exception with the given message.CsvWriteException(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
-
CsvWriteException
Creates an exception with the given message.- Parameters:
message- the detail message
-
CsvWriteException
Creates an exception with the given message and cause.- Parameters:
message- the detail messagecause- the underlying cause
-