/usr/lib/python2.6/site-packages/boto/swf
NameSizeModeActions
exceptions.py9580644editdlrm
exceptions.pyc18990644editdlrm
exceptions.pyo18990644editdlrm
layer1.py639280644editdlrm
layer1.pyc581010644editdlrm
layer1.pyo581010644editdlrm
layer1_decisions.py119380644editdlrm
layer1_decisions.pyc106110644editdlrm
layer1_decisions.pyo106110644editdlrm
layer2.py129390644editdlrm
layer2.pyc140520644editdlrm
layer2.pyo140520644editdlrm
__init__.py17920644editdlrm
__init__.pyc10900644editdlrm
__init__.pyo10900644editdlrm
Edit: /usr/lib/python2.6/site-packages/boto/swf/exceptions.py (958B)
""" Exceptions that are specific to the swf module. This module subclasses the base SWF response exception, boto.exceptions.SWFResponseError, for some of the SWF specific faults. """ from boto.exception import SWFResponseError class SWFDomainAlreadyExistsError(SWFResponseError): """ Raised when when the domain already exists. """ pass class SWFLimitExceededError(SWFResponseError): """ Raised when when a system imposed limitation has been reached. """ pass class SWFOperationNotPermittedError(SWFResponseError): """ Raised when (reserved for future use). """ class SWFTypeAlreadyExistsError(SWFResponseError): """ Raised when when the workflow type or activity type already exists. """ pass class SWFWorkflowExecutionAlreadyStartedError(SWFResponseError): """ Raised when an open execution with the same workflow_id is already running in the specified domain. """