| branch | devel |
| changeset 125 | 19b3f383c9ce |
| parent 116 | 48c70425bf6c |
| child 126 | 1ac2439a68b5 |
--- 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.")