diff -r 6efcdf7e2d62 -r 19b3f383c9ce iro/error.py --- a/iro/error.py Mon Jan 30 06:44:39 2012 +0100 +++ b/iro/error.py Mon Jan 30 06:51:28 2012 +0100 @@ -15,6 +15,10 @@ def __init__(self): InterfaceException.__init__(self, 901, u"Der API-Key ist ungültig.") +class JobNotFound(InterfaceException): + def __init__(self): + InterfaceException.__init__(self, 902, u"Die Jobid ist ungültig.") + class ExternalException(InterfaceException): def __init__(self): InterfaceException.__init__(self, 950, "Fehler in externer API.")