Package io.github.dornol.excelkit.core
Class ReadAbortException
java.lang.Object
java.lang.Throwable
java.lang.Exception
java.lang.RuntimeException
io.github.dornol.excelkit.core.ReadAbortException
- All Implemented Interfaces:
Serializable
Exception thrown by
AbstractReadHandler.readStrict(java.util.function.Consumer)
when a row fails validation or mapping.
This exception does not extend ExcelKitException, so it is propagated
separately through handler catch blocks.
- Since:
- 2025-07-19
- See Also:
-
Constructor Summary
ConstructorsConstructorDescriptionReadAbortException(String message) Creates an exception with the given message. -
Method Summary
Methods inherited from class java.lang.Throwable
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
-
Constructor Details
-
ReadAbortException
Creates an exception with the given message.- Parameters:
message- the detail message
-