public class XlsxException extends IOException:
Exception raised when an XLSX workbook cannot be read or written.
XlsxException is an IOException, so callers can either catch this specific error or handle it with their broader I/O error path.
import klyn.io.xlsx
try:
workbook = Workbook("report.xlsx")
catch error as XlsxException:
print(error.message)| Modifier and Type | Member | Description |
|---|---|---|
| public | XlsxExceptionXlsxException(message as String = ""): |
Creates an XLSX exception. |