Skip to main content

exceptions

Custom exceptions for the data package.

Classes

BitfountSchemaError

class BitfountSchemaError(*args, **kwargs):

Errors related to BitfountSchema.

Ancestors

DataNotLoadedError

class DataNotLoadedError(*args, **kwargs):

Raised if a data operation is attempted prior to data loading.

This is usually raised because load_data has not been called yet.

Ancestors

DataStructureError

class DataStructureError(*args, **kwargs):

Errors related to Datastructure.

Ancestors

DatabaseMissingTableError

class DatabaseMissingTableError(*args, **kwargs):

Raised when a specified database table is not found.

Ancestors

DatabaseSchemaNotFoundError

class DatabaseSchemaNotFoundError(*args, **kwargs):

Raised when a specified database schema is not found.

Ancestors

DatabaseUnsupportedQueryError

class DatabaseUnsupportedQueryError(*args, **kwargs):

Raised when an unsupported database query is provided.

Ancestors

DatasetSplitterError

class DatasetSplitterError(*args, **kwargs):

Errors related to DatasetSplitter.

Ancestors

DuplicateColumnError

class DuplicateColumnError(*args, **kwargs):

Raised if the column names are duplicated in the data.

This can be raised by the sql algorithms with multi-table pods.

Ancestors