Issue checklist
Feature use case
The export of Error types would make it possible to catch raised errors and handle them accordingly.
Description of the Feature
An import of the errors like
from foundry_dev_tools import DatasetHasOpenTransactionError
try:
# something
except DatasetHasOpenTransactionError as e:
# something else
except:
# whatever
would be great.
Alternatives you considered
An import of the errors like
from foundry_dev_tools import Errors
try:
# something
except Errors.DatasetHasOpenTransactionError as e:
# something else
except:
# whatever
would be great.
Additional Context
I
Issue checklist
Feature use case
The export of Error types would make it possible to catch raised errors and handle them accordingly.
Description of the Feature
An import of the errors like
would be great.
Alternatives you considered
An import of the errors like
would be great.
Additional Context
I