Added the APscheduler 3.9.1 source into the Linspector source tree.
This commit is contained in:
parent
3de67966f4
commit
3d9e919b05
40 changed files with 4629 additions and 1 deletions
12
apscheduler/schedulers/__init__.py
Normal file
12
apscheduler/schedulers/__init__.py
Normal file
|
|
@ -0,0 +1,12 @@
|
|||
class SchedulerAlreadyRunningError(Exception):
|
||||
"""Raised when attempting to start or configure the scheduler when it's already running."""
|
||||
|
||||
def __str__(self):
|
||||
return 'Scheduler is already running'
|
||||
|
||||
|
||||
class SchedulerNotRunningError(Exception):
|
||||
"""Raised when attempting to shutdown the scheduler when it's not running."""
|
||||
|
||||
def __str__(self):
|
||||
return 'Scheduler is not running'
|
||||
Loading…
Add table
Add a link
Reference in a new issue