conda_recipe_manager.ops.exceptions#
- Description:
Exceptions thrown by ops modules.
Exceptions
Base exception for all other Version Bumping exceptions. |
|
|
Exception to be thrown when the recipe file or other portion of the version-bumping process is in an illegal state. |
|
Exception to be thrown when there is a failure to edit (patch) a recipe file. |
- exception conda_recipe_manager.ops.exceptions.VersionBumperException[source]#
Bases:
ExceptionBase exception for all other Version Bumping 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#
- exception conda_recipe_manager.ops.exceptions.VersionBumperInvalidState(message: str)[source]#
Bases:
VersionBumperExceptionException to be thrown when the recipe file or other portion of the version-bumping process is in an illegal state.
- 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.ops.exceptions.VersionBumperPatchError(message: str)[source]#
Bases:
VersionBumperExceptionException to be thrown when there is a failure to edit (patch) a recipe file.
- 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#