Mercurial > repos > shellac > guppy_basecaller
comparison env/lib/python3.7/site-packages/boto/kms/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 InvalidGrantTokenException(BotoServerError): | |
16 pass | |
17 | |
18 | |
19 class DisabledException(BotoServerError): | |
20 pass | |
21 | |
22 | |
23 class LimitExceededException(BotoServerError): | |
24 pass | |
25 | |
26 | |
27 class DependencyTimeoutException(BotoServerError): | |
28 pass | |
29 | |
30 | |
31 class InvalidMarkerException(BotoServerError): | |
32 pass | |
33 | |
34 | |
35 class AlreadyExistsException(BotoServerError): | |
36 pass | |
37 | |
38 | |
39 class InvalidCiphertextException(BotoServerError): | |
40 pass | |
41 | |
42 | |
43 class KeyUnavailableException(BotoServerError): | |
44 pass | |
45 | |
46 | |
47 class InvalidAliasNameException(BotoServerError): | |
48 pass | |
49 | |
50 | |
51 class UnsupportedOperationException(BotoServerError): | |
52 pass | |
53 | |
54 | |
55 class InvalidArnException(BotoServerError): | |
56 pass | |
57 | |
58 | |
59 class KMSInternalException(BotoServerError): | |
60 pass | |
61 | |
62 | |
63 class InvalidKeyUsageException(BotoServerError): | |
64 pass | |
65 | |
66 | |
67 class MalformedPolicyDocumentException(BotoServerError): | |
68 pass | |
69 | |
70 | |
71 class NotFoundException(BotoServerError): | |
72 pass |