sift_py.data.error

1class DataError(Exception):
2    msg: str
3
4    def __init__(self, msg: str):
5        super().__init__(msg)
class DataError(builtins.Exception):
2class DataError(Exception):
3    msg: str
4
5    def __init__(self, msg: str):
6        super().__init__(msg)

Common base class for all non-exit exceptions.

DataError(msg: str)
5    def __init__(self, msg: str):
6        super().__init__(msg)
msg: str
Inherited Members
builtins.BaseException
with_traceback
args