XlsxException
classin packageklyn.io.xlsx
public class XlsxException extends IOException:
└ XlsxException

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.

Example
import klyn.io.xlsx

try:
workbook = Workbook("report.xlsx")
catch error as XlsxException:
print(error.message)
Inherited Properties
propertyInherited Properties from Exception: message
propertyInherited Properties from Object: type
Constructors
Modifier and Type Member Description
public XlsxException
XlsxException(message as String = ""):
Creates an XLSX exception.
Inherited Methods
methodInherited Methods from Exception: toString
methodInherited Methods from Object: deepCopy, fromJson, toDict, toJson, toString, toXml