comparison env/lib/python3.7/site-packages/boto/cloudsearch2/exceptions.py @ 2:6af9afd405e9 draft

"planemo upload commit 0a63dd5f4d38a1f6944587f52a8cd79874177fc1"
author shellac
date Thu, 14 May 2020 14:56:58 -0400
parents 26e78fe6e8c4
children
comparison
equal deleted inserted replaced
1:75ca89e9b81c 2:6af9afd405e9
1 """
2 Exceptions that are specific to the cloudsearch2 module.
3 """
4 from boto.exception import BotoServerError
5
6
7 class InvalidTypeException(BotoServerError):
8 """
9 Raised when an invalid record type is passed to CloudSearch.
10 """
11 pass
12
13
14 class LimitExceededException(BotoServerError):
15 """
16 Raised when a limit has been exceeded.
17 """
18 pass
19
20
21 class InternalException(BotoServerError):
22 """
23 A generic server-side error.
24 """
25 pass
26
27
28 class DisabledOperationException(BotoServerError):
29 """
30 Raised when an operation has been disabled.
31 """
32 pass
33
34
35 class ResourceNotFoundException(BotoServerError):
36 """
37 Raised when a requested resource does not exist.
38 """
39 pass
40
41
42 class BaseException(BotoServerError):
43 """
44 A generic server-side error.
45 """
46 pass