comparison env/lib/python3.7/site-packages/boto/cognito/identity/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 # The above copyright notice and this permission notice shall be included
2 # in all copies or substantial portions of the Software.
3 #
4 # THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
5 # OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABIL-
6 # ITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT
7 # SHALL THE AUTHOR BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
8 # WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
9 # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS
10 # IN THE SOFTWARE.
11 #
12 from boto.exception import BotoServerError
13
14
15 class LimitExceededException(BotoServerError):
16 pass
17
18
19 class ResourceConflictException(BotoServerError):
20 pass
21
22
23 class DeveloperUserAlreadyRegisteredException(BotoServerError):
24 pass
25
26
27 class TooManyRequestsException(BotoServerError):
28 pass
29
30
31 class InvalidParameterException(BotoServerError):
32 pass
33
34
35 class ResourceNotFoundException(BotoServerError):
36 pass
37
38
39 class InternalErrorException(BotoServerError):
40 pass
41
42
43 class NotAuthorizedException(BotoServerError):
44 pass