Mercurial > repos > guerler > springsuite
comparison planemo/lib/python3.7/site-packages/boto/cognito/identity/exceptions.py @ 0:d30785e31577 draft
"planemo upload commit 6eee67778febed82ddd413c3ca40b3183a3898f1"
author | guerler |
---|---|
date | Fri, 31 Jul 2020 00:18:57 -0400 |
parents | |
children |
comparison
equal
deleted
inserted
replaced
-1:000000000000 | 0:d30785e31577 |
---|---|
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 |