2024-11-16 01:48:15 -05:00

13 lines
268 B
Python

class DataBridgeError(Exception):
"""Base exception for DataBridge SDK"""
pass
class AuthenticationError(DataBridgeError):
"""Authentication related errors"""
pass
class ConnectionError(DataBridgeError):
"""Connection related errors"""
pass