Source code for exceltablekit.errors.table

from exceltablekit.errors.base import ExcelTableKitError


[docs] class TableNotDefinedError(ExcelTableKitError): def __init__(self) -> None: super().__init__("The excel table is not defined")
[docs] class HeaderTableNotDefinedError(ExcelTableKitError): def __init__(self) -> None: super().__init__("The header of the excel table is not defined")