Mercurial > repos > shellac > guppy_basecaller
comparison env/lib/python3.7/site-packages/boto/cognito/identity/exceptions.py @ 5:9b1c78e6ba9c draft default tip
"planemo upload commit 6c0a8142489327ece472c84e558c47da711a9142"
author | shellac |
---|---|
date | Mon, 01 Jun 2020 08:59:25 -0400 |
parents | 79f47841a781 |
children |
comparison
equal
deleted
inserted
replaced
4:79f47841a781 | 5:9b1c78e6ba9c |
---|---|
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 |