Files
mayan-edms/apps/scheduler/exceptions.py
Roberto Rosario 859109c378 Refactor scheduler
2012-08-01 01:41:37 -04:00

15 lines
334 B
Python

class AlreadyScheduled(Exception):
"""
Raised when trying to schedule a Job instance of anything after it was
already scheduled in any other scheduler
"""
pass
class UnknownJobClass(Exception):
"""
Raised when trying to schedule a Job that is not of a a type:
IntervalJob or DateJob
"""
pass