Skip to content

exceptions

Exceptions potentially raised for all submodules

Each submodule may have its own exceptions.py file as well.

CommandNotImplemented

Bases: NotImplementedError

Exception raised when a command is not implemented

Source code in hpcman/exceptions.py
class CommandNotImplemented(NotImplementedError):
    """Exception raised when a command is not implemented"""

    pass