conda_recipe_manager.fetcher.exceptions

Description:

Provides exceptions for fetching modules.

Exceptions

FetchError(message)

General exception to be thrown when there is a failure to fetch an artifact.

FetchRequiredError(message)

This operation could not be performed because a call to fetch() has not yet succeeded.

FetchUnsupportedError(message)

An issue occurred because the target artifact/source format is unsupported.

FetcherException

Base exception for all other artifact fetching exceptions.

exception conda_recipe_manager.fetcher.exceptions.FetchError(message: str)[source]

Bases: FetcherException

General exception to be thrown when there is a failure to fetch an artifact.

add_note()

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

with_traceback()

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

args
exception conda_recipe_manager.fetcher.exceptions.FetchRequiredError(message: str)[source]

Bases: FetcherException

This operation could not be performed because a call to fetch() has not yet succeeded.

add_note()

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

with_traceback()

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

args
exception conda_recipe_manager.fetcher.exceptions.FetchUnsupportedError(message: str)[source]

Bases: FetcherException

An issue occurred because the target artifact/source format is unsupported.

add_note()

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

with_traceback()

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

args
exception conda_recipe_manager.fetcher.exceptions.FetcherException[source]

Bases: Exception

Base exception for all other artifact fetching exceptions. Should not be raised directly.

add_note()

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

with_traceback()

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

args