2013-02-14 19:27:36 +01:00
|
|
|
|
#!/usr/bin/env python
|
|
|
|
|
# -*- coding: utf-8 -*-
|
|
|
|
|
"""
|
|
|
|
|
openslides.motion.exceptions
|
|
|
|
|
~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
|
|
|
|
|
|
|
|
|
Exceptions for the motion app.
|
|
|
|
|
|
2013-03-01 17:13:12 +01:00
|
|
|
|
:copyright: (c) 2011–2013 by the OpenSlides team, see AUTHORS.
|
2013-02-14 19:27:36 +01:00
|
|
|
|
:license: GNU GPL, see LICENSE for more details.
|
|
|
|
|
"""
|
|
|
|
|
|
|
|
|
|
from openslides.utils.exceptions import OpenSlidesError
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
class WorkflowError(OpenSlidesError):
|
|
|
|
|
"""Exception raised when errors in a workflow or state accure."""
|
|
|
|
|
pass
|