summaryrefslogtreecommitdiff
path: root/test/integration/targets/script_inventory_ec2/lib/boto/exception.py
blob: 0179d5d75fed2af384ac17a693b9831f2bab5b91 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
from __future__ import (absolute_import, division, print_function)
__metaclass__ = type


class BotoServerError(Exception):
    pass


class ClientError(Exception):
    pass


class PartialCredentialsError(Exception):
    pass


class ProfileNotFound(Exception):
    pass


class BotoCoreError(Exception):
    pass