exceptions NoJobsFound Bases: RuntimeError Raised when no jobs are found in the queue. Source code in hpcman/queue/exceptions.py 7 8 9 10class 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 13 14 15 16class 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 4class NotASubmitHost(RuntimeError): """Raised when a host is not a submit host.""" pass