Commit 540743b9 authored by Antoine Millet's avatar Antoine Millet
Browse files

Added JobError class.

parent b9e7ca6b
Loading
Loading
Loading
Loading
+5 −0
Original line number Diff line number Diff line
@@ -25,10 +25,15 @@ class NotConnectedAccountError(Exception):
class ReservedTagError(Exception):
    pass


class BadRoleError(Exception):
    pass


class JobError(Exception):
    pass


class BadJobTypeError(Exception):
    pass