In a few places in `deta/base.py` exceptions are raised with the `Exception` class. See https://github.com/deta/deta-python/blob/5e68173ffea4b3dd2c3d75fadda4e3c9854d3199/deta/base.py. https://github.com/deta/deta-python/blob/5e68173ffea4b3dd2c3d75fadda4e3c9854d3199/deta/base.py#L134 https://github.com/deta/deta-python/blob/5e68173ffea4b3dd2c3d75fadda4e3c9854d3199/deta/base.py#L272 It'd be better practice if custom exceptions were defined and derived from the general `Exception` class.
In a few places in
deta/base.pyexceptions are raised with theExceptionclass.See https://github.com/deta/deta-python/blob/5e68173ffea4b3dd2c3d75fadda4e3c9854d3199/deta/base.py.
deta-python/deta/base.py
Line 134 in 5e68173
deta-python/deta/base.py
Line 272 in 5e68173
It'd be better practice if custom exceptions were defined and derived from the general
Exceptionclass.