Skip to content

exceptions

NoJobsFound

Bases: RuntimeError

Raised when no jobs are found in the queue.

Source code in hpcman/queue/exceptions.py
class NoJobsFound(RuntimeError):
    """Raised when no jobs are found in the queue."""

    pass

NoQueuesFound

Bases: RuntimeError

Raised when no queues are found.

Source code in hpcman/queue/exceptions.py
class NoQueuesFound(RuntimeError):
    """Raised when no queues are found."""

    pass

NotASubmitHost

Bases: RuntimeError

Raised when a host is not a submit host.

Source code in hpcman/queue/exceptions.py
1
2
3
4
class NotASubmitHost(RuntimeError):
    """Raised when a host is not a submit host."""

    pass