13 lines
249 B
Python
13 lines
249 B
Python
class InvalidStateUpdateError(Exception):
|
|
pass
|
|
|
|
|
|
class AppState(object):
|
|
STARTING = "starting"
|
|
RESUMING = "resuming"
|
|
RUNNING = "running"
|
|
PAUSING = "pausing"
|
|
PAUSED = "paused"
|
|
STOPPING = "stopping"
|
|
STOPPED = "stopped"
|