Source code for exasol.bucketfs._error
from __future__ import annotations
[docs]
class BucketFsError(Exception):
"""Error occurred while interacting with the bucket fs service."""
def __init__(self, *args, **kwargs):
super().__init__(*args, **kwargs)