Class ExcelKitException

All Implemented Interfaces:
Serializable
Direct Known Subclasses:
CsvReadException, CsvWriteException, ExcelReadException, ExcelWriteException, TempResourceCreateException

public class ExcelKitException extends RuntimeException
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 Details

    • ExcelKitException

      public ExcelKitException(String message)
      Creates an exception with the given message.
      Parameters:
      message - the detail message
    • ExcelKitException

      public ExcelKitException(String message, Throwable cause)
      Creates an exception with the given message and cause.
      Parameters:
      message - the detail message
      cause - the underlying cause
    • ExcelKitException

      public ExcelKitException(Throwable cause)
      Creates an exception with the given cause.
      Parameters:
      cause - the underlying cause