gene.etl.exceptions#

Provide ETL-specific exceptions.

exception gene.etl.exceptions.GeneFileVersionError[source]#

Raise when unable to parse version number from saved data file.

__init__(*args, **kwargs)[source]#
add_note()[source]#

Exception.add_note(note) – add a note to the exception

args[source]#
with_traceback()[source]#

Exception.with_traceback(tb) – set self.__traceback__ to tb and return self.

exception gene.etl.exceptions.GeneNormalizerEtlError[source]#

Base ETL exception.

__init__(*args, **kwargs)[source]#
add_note()[source]#

Exception.add_note(note) – add a note to the exception

args[source]#
with_traceback()[source]#

Exception.with_traceback(tb) – set self.__traceback__ to tb and return self.

exception gene.etl.exceptions.GeneSourceFetchError[source]#

Raise during data acquisition when data fetch fails (e.g. unable to get latest version number, or connection failure during download)

__init__(*args, **kwargs)[source]#
add_note()[source]#

Exception.add_note(note) – add a note to the exception

args[source]#
with_traceback()[source]#

Exception.with_traceback(tb) – set self.__traceback__ to tb and return self.