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)
class InferBfsPathError(BucketFsError): """Error occurred while inferring bfs path - Missing required details."""