Skip to main content
Version: 1.9.1

tabsdata.exceptions

CdcErrorException raised for generic CDC errors.
ConnectionConfigurationErrorException raised when the creation or modification of a Connection object fails.
ConstructorErrorException raised when public API classes don't support using their constructor.
CredentialsConfigurationErrorException raised when the creation or modification of a Credentials object fails.
DataQualityConfigurationErrorException raised when the creation or modification of a DataQuality object or one of its auxiliary objects fails.
DataQualityProcessingErrorException raised when processing the DataQuality specifications during a function registration or execution.
Db2CdcErrorException raised for DB2 CDC errors.
DecoratorConfigurationErrorException raised when the creation or modification of a decorator object fails.
DestinationConfigurationErrorException raised when the creation or modification of a destination object fails.
ErrorCode
FormatConfigurationErrorException raised when the creation or modification of a Format object fails.
FunctionConfigurationErrorException raised when a function is not properly configured to be registered.
MySQLCdcErrorException raised for MySQL CDC errors.
ParameterErrorParameterError(name, type, value, msg)
ParameterValidationErrorException raised when public API parameter validation fails.
ParameterValueErrorBase exception for all exceptions in the Tabs Data SDK.
PostgresCdcErrorException raised for PostgreSQL CDC errors.
RegistrationErrorException raised when registration of a function in the server fails.
SDKErrorBase exception for all exceptions in the Tabs Data SDK.
SecretConfigurationErrorException raised when the creation or modification of a Secret object fails.
SourceConfigurationErrorException raised when the creation or modification of a source object fails.
StageTriggerConfigurationErrorException raised when the creation or modification of a StageTrigger object or one of its auxiliary objects fails.
StageTriggerExecutionErrorException raised when a StageTrigger execution fails during runtime.
TableFrameErrorException raised when handling a TableFrame.
TableURIConfigurationErrorException raised when the creation or modification of a URI object or one of its auxiliary objects fails.
TabsDataExceptionBase exception for all exceptions in the Tabs Data SDK.
TabsdataServerErrorException raised when the server returns an error.

CdcError

class CdcError(error_code: ErrorCode, *args)

Bases: TabsDataException

Exception raised for generic CDC errors.

property
error_codeErrorCode

ConnectionConfigurationError

class ConnectionConfigurationError(error_code: ErrorCode, *args)

Bases: TabsDataException

Exception raised when the creation or modification of a Connection object fails.

property
error_codeErrorCode

ConstructorError

class ConstructorError(error_code: ErrorCode, *args)

Bases: TabsDataException

Exception raised when public API classes don't support using their constructor.

property
error_codeErrorCode

CredentialsConfigurationError

class CredentialsConfigurationError(error_code: ErrorCode, *args)

Bases: TabsDataException

Exception raised when the creation or modification of a Credentials object fails.

property
error_codeErrorCode

DataQualityConfigurationError

class DataQualityConfigurationError(error_code: ErrorCode, *args)

Bases: TabsDataException

Exception raised when the creation or modification of a DataQuality object or one of its auxiliary objects fails.

property
error_codeErrorCode

DataQualityProcessingError

class DataQualityProcessingError(error_code: ErrorCode, *args)

Bases: TabsDataException

Exception raised when processing the DataQuality specifications during a function registration or execution.

property
error_codeErrorCode

Db2CdcError

class Db2CdcError(error_code: ErrorCode, *args)

Bases: CdcError

Exception raised for DB2 CDC errors.

property
error_codeErrorCode

DecoratorConfigurationError

class DecoratorConfigurationError(error_code: ErrorCode, *args)

Bases: TabsDataException

Exception raised when the creation or modification of a decorator object fails.

property
error_codeErrorCode

DestinationConfigurationError

class DestinationConfigurationError(error_code: ErrorCode, *args)

Bases: TabsDataException

Exception raised when the creation or modification of a destination object fails.

property
error_codeErrorCode

ErrorCode

class ErrorCode(*args, **kwds)

Bases: Enum


FormatConfigurationError

class FormatConfigurationError(error_code: ErrorCode, *args)

Bases: TabsDataException

Exception raised when the creation or modification of a Format object fails.

property
error_codeErrorCode

FunctionConfigurationError

class FunctionConfigurationError(error_code: ErrorCode, *args)

Bases: TabsDataException

Exception raised when a function is not properly configured to be registered.

property
error_codeErrorCode

MySQLCdcError

class MySQLCdcError(error_code: ErrorCode, *args)

Bases: CdcError

Exception raised for MySQL CDC errors.

property
error_codeErrorCode

ParameterError

class ParameterError(*args, **kwargs)

Bases: tuple

ParameterError(name, type, value, msg)


ParameterValidationError

class ParameterValidationError(
function: function | method,
error_code: ErrorCode,
pyd_validation_error: ValidationError,
)

Bases: TabsDataException

Exception raised when public API parameter validation fails.

property
clsstr | None

property
error_codeErrorCode

property
errorsCollection[ParameterError]

property
fnstr | None

property
modstr

ParameterValueError

class ParameterValueError(
error_code: ErrorCode,
fn_name: str,
param_names: str | list[str],
msg: str,
)

Bases: TabsDataException

Base exception for all exceptions in the Tabs Data SDK.

property
error_codeErrorCode

PostgresCdcError

class PostgresCdcError(error_code: ErrorCode, *args)

Bases: CdcError

Exception raised for PostgreSQL CDC errors.

property
error_codeErrorCode

RegistrationError

class RegistrationError(error_code: ErrorCode, *args)

Bases: TabsDataException

Exception raised when registration of a function in the server fails.

property
error_codeErrorCode

SDKError

class SDKError(error_code: ErrorCode, *args)

Bases: TabsDataException

Base exception for all exceptions in the Tabs Data SDK.

property
error_codeErrorCode

SecretConfigurationError

class SecretConfigurationError(error_code: ErrorCode, *args)

Bases: TabsDataException

Exception raised when the creation or modification of a Secret object fails.

property
error_codeErrorCode

SourceConfigurationError

class SourceConfigurationError(error_code: ErrorCode, *args)

Bases: TabsDataException

Exception raised when the creation or modification of a source object fails.

property
error_codeErrorCode

StageTriggerConfigurationError

class StageTriggerConfigurationError(error_code: ErrorCode, *args)

Bases: TabsDataException

Exception raised when the creation or modification of a StageTrigger object or one of its auxiliary objects fails.

property
error_codeErrorCode

StageTriggerExecutionError

class StageTriggerExecutionError(error_code: ErrorCode, *args)

Bases: TabsDataException

Exception raised when a StageTrigger execution fails during runtime.

property
error_codeErrorCode

TableFrameError

class TableFrameError(error_code: ErrorCode, *args)

Bases: TabsDataException

Exception raised when handling a TableFrame.

property
error_codeErrorCode

TableURIConfigurationError

class TableURIConfigurationError(error_code: ErrorCode, *args)

Bases: TabsDataException

Exception raised when the creation or modification of a URI object or one of its auxiliary objects fails.

property
error_codeErrorCode

TabsDataException

class TabsDataException(error_code: ErrorCode, *args)

Bases: Exception

Base exception for all exceptions in the Tabs Data SDK.

property
error_codeErrorCode

TabsdataServerError

class TabsdataServerError(error_code: ErrorCode, *args)

Bases: TabsDataException

Exception raised when the server returns an error.

property
error_codeErrorCode