Source code for infrahouse_toolkit.aws.exceptions

"""Top level exceptions.

The exception hierarchy repeats the structure of the infrahouse_toolkit package.
Each module in the package has its own exceptions.py module.
The module exceptions are inherited from the upper module exceptions.

"""

from infrahouse_toolkit.exceptions import IHException


[docs]class IHAWSException(IHException): """AWS related InfraHouse exception"""